-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
35 lines (31 loc) · 1.12 KB
/
Copy pathtodo.html
File metadata and controls
35 lines (31 loc) · 1.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="./src/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.2, maximum-scale=5" />
<title>todolist</title>
</head>
<body>
<div class="todos">
<span class="title">todos</span>
<div class="input">
<span class="select-all">❯</span>
<input class="new-todo" type="text" autofocus="autofocus" autocomplete="off" placeholder="What needs to be done?" >
<span class="search"></span>
</div>
<div class="todo">
<div class="item"></div>
<span class="tick-block"><span class="tick"></span></span>
<span class="question"></span></div>
<div class="tail">
<span class="items"></span>
<a class="all" href="#All">All</a>
<a class="active" href="#Active">Active</a>
<a class="completed" href="#Completed">Completed</a>
<span class="clear_completed">Clear</span>
</div>
</div>
<script type="text/javascript" src="./src/todo.js"></script>
</body>
</html>