-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 1.96 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 1.96 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
64
65
<!DOCTYPE html>
<html lang="en" data-framework="es6">
<head>
<meta charset="utf-8" />
<title>Vanilla ES6 • TodoMVC</title>
<link rel="stylesheet" href="./css/base.css" />
<link rel="stylesheet" href="./css/todoapp.css" />
</head>
<body>
<section class="todoapp">
<header class="header">
<h1>todos</h1>
<input
class="new-todo"
placeholder="What needs to be done?"
autofocus
/>
</header>
<section class="main">
<input id="toggle-all" class="toggle-all" type="checkbox" />
<label for="toggle-all">Mark all as complete</label>
<ul class="todo-list">
<li>
<div class="view">
<input class="toggle" type="checkbox" />
<label>1</label>
<button class="destroy"></button>
</div>
</li>
<li class="completed">
<div class="view">
<input class="toggle" type="checkbox" checked />
<label>2</label>
<button class="destroy"></button>
</div>
</li>
<li class="editing">
<div class="view">
<input class="toggle" type="checkbox" checked />
<label>2</label>
<button class="destroy"></button>
</div>
<input class="edit" type="text" />
</li>
</ul>
<footer class="footer">
<span class="todo-count"><strong>4</strong> items left</span>
<ul class="filters">
<li>
<a href="#/" class="selected">All</a>
</li>
<li>
<a href="#/active">Active</a>
</li>
<li>
<a href="#/completed">Completed</a>
</li>
</ul>
<button class="clear-completed">Clear completed</button>
</footer>
</section>
</section>
<script src="./js/script.js"></script>
</body>
</html>