-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
38 lines (38 loc) · 1.12 KB
/
todo.html
File metadata and controls
38 lines (38 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta content="width=device-width,initial-scale=1,user-scalable=no,maximum-scale=2" name="viewport"/>
<title>Todo</title>
<link rel="stylesheet" href="todo.css"/>
</head>
<body>
<section id="main">
<header class="header">
<div id="title">
<h1>todos</h1>
</div>
<div id="userInput">
<input id="toggle-all" type="checkbox"/>
<input id="new-todo" type="text" placeholder="What needs to be done?" autofocus>
</div>
<ul id="todo-list"></ul>
</header>
</section>
<div id="footer">
<ul id="filterList">
<li id="all">all</li>
<li id="active">active</li>
<li id="completed">completed</li>
</ul>
<div>
<div id="leftItems"></div>
</div>
<button id="clear-completed">Clear completed</button>
</div>
<script src="zepto.js"></script>
<script src="model.js"></script>
<script src="localStorage.js"></script>
<script src="todo.js"></script>
</body>
</html>