-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.3 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<title></title>
</head>
<body>
<section class="wrapper">
<header>Todo App</header>
<div class="input-field">
<input
type="text"
id="text-box"
placeholder="Your new task"
/>
<button class="btn btn-new-task">
<img class="icon" src="img/plus.svg" alt="icon" />
</button>
</div>
<div class="order">
<label class="order-option">
<input
type="radio"
name="radio"
checked=""
id="reverse"/>
<span class="order-view">Newest</span>
</label>
<label class="order-option">
<input
type="radio"
name="radio"
id="normal"
/>
<span class="order-view">Oldest</span>
</label>
</div>
<ul class="todolist"></ul>
<footer>
<span class="info">
You have <span class="amt">1</span> pending tasks
</span>
<button class="btn btn-clear-all">Clear All</button>
</footer>
</section>
<script src="app.js"></script>
<script src="devtools.js"></script>
</body>
</html>