-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 952 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
33
34
35
36
<html>
<header>
<link rel="stylesheet" type="text/css" href = "./less/todo.css">
</header>
<div id = "appFrame">
<header>
<h1>Todos</h1>
<input id = "todo-input" type = "text" placeholder = "What needs to be done?">
</header>
<section>
<input id = "select-all" type = "checkbox"></input>
<label>Mark all as complete</label>
<ul id = "todo-list">
<div class = "view">
<input class = "tick" type = "checkbox"></input>
<label><label>
</div>
</ul>
</section>
<footer></footer>
</div>
<div id = "instructions">
Double-click to edit a todo.
</div>
<div id = "credits">
create by
<br>
<a href="http://www.baidu.com">William.D.King</a>
.
<br>
rewritten by:
<a href="https://github.com/wiiliamking/">William</a>
.
</div>
<script type="text/javascript" src = "./js/index.js"></script>
</html>