-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodomvc.html
49 lines (43 loc) · 1.66 KB
/
todomvc.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
<!DOCTYPE html>
<html>
<head>
<title>Fake TodoMVC</title>
<link rel="stylesheet" type="text/css" href="todomvc.css" />
</head>
<body>
<h1>todos</h1>
<!-- Main to-do list wrapper div -->
<div id="main">
<!-- Fake entry area -->
<div id="entry">
<span class="checkbox"><img src="http://m.bcf.com.au/Content/Images/double-down-arrow.png" width="25px" /></span>What needs to be done?
</div>
<!-- List of fake items -->
<div class="eItem">
<span class="checkbox"><img src="http://centerformediajustice.org/wp-content/uploads/2009/06/check-mark-jpg.jpg" width="25px" height="10px" /></span>Go home.
</div>
<div class="eItem">
<span class="checkbox"><img src="http://centerformediajustice.org/wp-content/uploads/2009/06/check-mark-jpg.jpg" width="25px" height="10px" /></span>Item 1
</div>
<div class="eItem">
<span class="checkbox"><img src="http://centerformediajustice.org/wp-content/uploads/2009/06/check-mark-jpg.jpg" width="25px" height="10px" /></span>Item 2
</div>
<!-- Fake navigation/utility bar -->
<div id="navbar">
<span id="lNav"><strong>3</strong> items left</span>
<ul>
<li><strong>All</strong></li>
<li>Active</li>
<li>Completed</li>
</ul>
</div>
</div>
<div id="foot">
<ul>
<li>Double-click to edit a todo</li>
<li>Created by <span class="fLink">Oscar Godson</span></li>
<li>Part of <span class="fLink">TodoMVC</span></li>
</ul>
</div>
</body>
</html>