-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<head>
<title>TODOLIST</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content>
<meta name="author" content>
<link rel="stylesheet" type="text/css" href="components/normalize.css">
<link rel="stylesheet" type="text/css" href="components/todolist.css">
</head>
<body>
<header class="center">
<h1>todos</h1>
</header>
<section class="center">
<div class="todolist-items">
<ul>
<li>
<div>
<input class="toggle-all false" type="checkbox">
<input type="text" id="new-todo" placeholder="What needs to be done?" autofocus>
</div>
</li>
</ul>
</div>
</section>
<footer class="center">
<span class="todolist-counter left">
<strong><span class="todo-counter">1</span> item left</strong>
</span>
<span class="todolist-filters strong">All</span>
<span class="todolist-filters">Active</span>
<span class="todolist-filters">Completed</span>
</footer>
<script type="text/javascript" src="components/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>