-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 926 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>todolist-prime</title>
<link rel="stylesheet" href="./todo-list.css">
<link href="https://fonts.googleapis.com/css?family=Exo+2|ZCOOL+KuaiLe|ZCOOL+XiaoWei&display=swap" rel="stylesheet"></head>
<body>
<header>
<section>
<label for="add_list">My todolist</label>
<input type="text" id="add_list" name="add_list"
placeholder="type here" required>
</section>
</header>
<div class="content">
<h1>未完成<span id="todocount"></span></h1>
<ol id="todolist">
</ol>
<h1>已完成<span id="donecount"></span></h1>
<ol id="donelist">
</ol>
</div>
<div id="clear">
<button id="clearbutton"><h3>全部清除</h3></button>
</div>
<script src="./todo-list.js"></script>
</body>
</html>