-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtodolist.html
More file actions
41 lines (40 loc) · 1017 Bytes
/
todolist.html
File metadata and controls
41 lines (40 loc) · 1017 Bytes
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
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="style.css"/>
<div class="container-fluid"><div class="header">
<span>TO DO LIST</span>
</div>
<div class="main">
<ol class="list">
<li>
<input type="checkbox" checked="checked">
<a>Study</a>
</li>
<li>
<input type="checkbox" checked="checked">
<a>Computer Games</a>
</li>
<li>
<input type="checkbox" checked="checked">
<a>Programming</a>
</li>
<li>
<input type="checkbox" checked="checked">
<a>Hangout</a>
</li>
<li>
<input type="checkbox" checked="checked">
<a>Football</a>
</li>
<li>
<input type="checkbox" checked="checked">
<a>Pretend to Study</a>
</li>
<li>
<input type="checkbox" checked="checked">
<a>Sleep</a>
</li>
</ol>
</div>
</div>
</html>