-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.72 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header">
<h1 class="myhead">To Do List</h1>
</div>
<hr>
<div id="add-task" class="section">
<label for="new-task" id="additem"><h3 class="head">Add New Task ✍</h3></label>
<input id="new-task" type="text" placeholder="Enter new task...">
<button>Add</button>
</div>
<hr>
<h3 class="head task-heading" id="head">Task List ✨</h3>
<ul id="incomplete-tasks" class="task-list section">
<li>
<input type="checkbox">
<label>Completing Assignments</label>
<button class="delete">Delete</button>
</li>
<li class="editMode">
<input type="checkbox">
<label>GYM Workout</label>
<button class="delete">Delete</button>
</li>
</ul>
<hr>
<h3 class="head completed-task-heading" id="head">Completed Tasks ✅</h3>
<ul id="completed-tasks" class="task-list section">
<li>
<input type="checkbox" checked>
<label>See the Doctor</label>
<button class="delete">Delete</button>
</li>
</ul>
<hr>
<div id="reset-section" class="section">
<button id="reset">Reset</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>