19 lines
482 B
HTML
19 lines
482 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Todo</title>
|
||
|
<link rel="stylesheet" href="./todo.css">
|
||
|
<script src="./todo.js" defer></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h1 id="title">Todo-list</h1>
|
||
|
<textarea id="todoField" cols="60" rows="2" autofocus ></textarea>
|
||
|
<button id="todoButton">Add task</button>
|
||
|
<div id="todoSummary"></div>
|
||
|
<ul id="todoList"></ul>
|
||
|
|
||
|
</body>
|
||
|
</html>
|