-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
52 lines (49 loc) · 1.66 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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ToDo List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="todo">
<div class="header"><span>TO-DO LIST</span></div>
<div class="desc">
<ul class="list">
<li class="dark-green">
<input type="checkbox">
<label for="">Go To Gym</label>
</li>
<li class="green">
<input type="checkbox">
<label for="">Recoding Video</label>
</li>
<li class="dark-green">
<input type="checkbox">
<label for="">Complete Assignment</label>
</li>
<li class="green">
<input type="checkbox">
<label for="">Coding</label>
</li>
<li class="dark-green">
<input type="checkbox">
<label for="">Meeting</label>
</li>
<li class="green">
<input type="checkbox">
<label for="">Swimming Class</label>
</li>
<li class="dark-green">
<input type="checkbox">
<label for="">Video Editing</label>
</li>
<li class="green">
<input type="checkbox">
<label for="">Recoding Video</label>
</li>
</ul>
</div>
</div>
</body>
</html>