-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 833 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Todo App</title>
<link href="css/style.css" rel="stylesheet" />
<script defer src="js/main.js"></script>
</head>
<body>
<main class="main-content">
<section class="container">
<form id="new-task-form">
<input id="new-task" type="text" placeholder="Add a new task" required />
<input class="submit-btn" type="submit" value="+" />
</form>
<div class="container todo">
<div class="todo-header">Tasks to do</div>
<ul class="todo-list"></ul>
</div>
<div class="container done">
<div class="done-header">Done</div>
<ul class="done-list"></ul>
</div>
</section>
</main>
</body>
</html>