-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToDoSample.html
More file actions
36 lines (28 loc) · 994 Bytes
/
Copy pathToDoSample.html
File metadata and controls
36 lines (28 loc) · 994 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
<!DOCTYPE html>
<html>
<head>
<title>Sample ToDo List</title>
<link rel="stylesheet" type="text/css" href="todo.css">
</head>
<body>
<div class='title'>
<h1>todos </h1>
</div>
<div class='notebook'>
<div class='todolist'>
<div class='topitem'>
<div class='check'><img src="checkmark-lt.jpg" alt="check mark"></div><div class='item'><input type="text" placeholder="What needs to be done?"></div>
</div>
<div class='topitem'>
<div class='check'><img src="checkmark-lt.jpg" alt="check mark"></div><div class='item'><input type="" placeholder="type your text here"></div>
</div>
</div>
</div>
<div class='footer'>
<div class='status'><span class="itemsleft" id='itemcount'></span><strong>0</strong> items left <span class="all" id='showall'>All</span><span class='active' id='showactive'>Active</span><span class='completed' id='showcomplete'>Completed</span></div>
</div>
<div>
<p id="info">Double-click to edit a todo</p>
</div>
</body>
</html>