-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 891 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>todo list</title>
<link rel="stylesheet" href="index.css">
</head>
<body class="modern">
<h1>todo list</h1>
<section id="main">
<form action="">
<input type="checkbox" id="check-all"><input type="text" placeholder="what?">
</form>
<ul id="todos"></ul>
<footer>
<p id="count"></p>
<nav id="filters">
<a href="#" id="all">all</a> |
<a href="#" id="not-done">not done</a> |
<a href="#" id="done">done</a>
</nav>
<a href="#" id="clear-done">clear done</a>
<hr>
<p><a href="#" id="style">style: modern</a></p>
</footer>
</div>
<script src="js/todo-list.js"></script>
<script src="js/todo-list-ui.js"></script>
<script src="js/init.js"></script>
</body>
</html>