-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.52 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=375, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<title>todoList</title>
<link rel="stylesheet" href="todo.css" type="text/css"/>
</head>
<body>
<div id="main">
<h1>TODO</h1>
<div id="panel">
<div id="input">
<label for="todo"></label>
<input id="todo" type="text" placeholder="to do something" autofocus="autofocus" maxlength="15"/>
<div id="add" class="todo-button">Add</div>
</div>
<div id="bottom">
<span id="active">No items left</span>
<div id="control">
<span id="show-all" class="item-type-active">All</span>
<span id="show-active" class="item-type">Active</span>
<span id="show-completed" class="item-type">Completed</span>
</div>
</div>
<div id="list">
<div class="list-item" id="nothing">
<div class="todo-item">
<span class="todo-text">Nothing Here</span>
</div>
</div>
</div>
<div id="do-undo">
<button id="do" class="do">Do All</button>
<button id="undo" class="do">Undo All</button>
</div>
<button id="clear">Clear All Completed</button>
</div>
</div>
<script src="model.js"></script>
<script src="provider-localStorage.js"></script>
<script src="todo.js"></script>
</body>
</html>