-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 1.83 KB
/
index.html
File metadata and controls
63 lines (62 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" data-framework="javascript">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>TodoMVC</title>
<link rel="stylesheet" href="base.css">
</head>
<body>
<section id="todoapp">
<header id="header">
<h1>todos</h1>
<input id="new-todo" placeholder="What needs to be done?" autofocus="">
</header>
<section id="main" style="display: block;">
<input id="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list">
<li data-id="1399216626359" class="">
<div class="view">
<input class="toggle" type="checkbox">
<label>Include jQuery on the page</label>
<button class="destroy"></button>
</div>
</li>
<li data-id="1399216659638" class="">
<div class="view">
<input class="toggle" type="checkbox">
<label>???</label>
<button class="destroy"></button>
</div>
</li>
<li data-id="1399216664438" class="">
<div class="view">
<input class="toggle" type="checkbox">
<label>Profit!</label>
<button class="destroy"></button>
</div>
</li>
</ul>
</section>
<footer id="footer" style="display: block;">
<span id="todo-count"><strong>3</strong> items left</span>
<ul id="filters">
<li>
<a href="#" class="selected">All</a>
</li>
<li>
<a href="#">Active</a>
</li>
<li>
<a href="#">Completed</a>
</li>
</ul>
<button id="clear-completed" style="display: none;"></button>
</footer>
</section>
<footer id="info">
<p>Double-click to edit a todo</p>
</footer>
</body>
</html>