-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootTodo.html
28 lines (28 loc) · 858 Bytes
/
bootTodo.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
<!doctype html>
<html lang="en" data-framework="javascript">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Todo</title>
<link rel="stylesheet" href = "./dist\css\bootstrap-theme.css">
<link rel="stylesheet" href = "./dist\css\bootstrap.css">
<link rel="stylesheet" href="bootTodo.css">
</head>
<body>
<section id="todoapp">
<header id="header">
<h1>todos</h1>
<input class="select-all" type="button">
<input id="new-todo" placeholder="What needs to be done?" autofocus>
</header>
<ul class="todo-list">
</ul>
<footer id="footer">
<span id="todo-count">items left</span>
<input class="clear-done" type="button">
</footer>
</section>
<script src="http://code.jquery.com/jquery-2.0.3.js"></script>
<script src ="./bootTodo.js"></script>
</body>
</html>