-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 1.72 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript ToDo List</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="whole-document">
<h1 class="title">JavaScript ToDo List</h1>
<div>
<form id="add-task-form">
<input
type="text"
placeholder="Type Task Here"
/>
<button>Add Task</button>
</form>
</div>
<div class="flex-container">
<div class="task-list-holder">
<h2>ToDo List</h2>
<ul class="tasks-list">
<li class="tasks">
<span>Do the Laundry</span>
<p class="completeBtnHandler">
<button class="completeBtn">Complete Task</button>
</p>
</li>
<li class="tasks">
<span>Wash Dishes</span>
<p class="completeBtnHandler">
<button class="completeBtn">Complete Task</button>
</p>
</li>
<li class="tasks">
<span>Fold Clothes</span>
<p class="completeBtnHandler">
<button class="completeBtn">Complete Task</button>
</p>
</li>
</ul>
</div>
<div class="completed-task-list-holder">
<h2>Completed List</h2>
<ul class="completed-tasks-list">
</ul>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>