-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo App</title>
<!-- link for favicon -->
<link rel="shortcut icon" href="./favicon.png" type="image/x-icon">
<!-- link for stylesheet -->
<link rel="stylesheet" href="./public/css/style.css">
</head>
<body>
<div class="todo-msg"><span class="msg">Input something in todo field.</span><span class="clear-msg">X</span></div>
<!-- todo -->
<div class="todo">
<div class="todo-header">
<h1 class="title">Todo <span class="colorize">App</span></h1>
</div>
<div class="todo-body">
<div class="todo-input-area">
<input type="text" placeholder="Add you new Todo" id="todo-field" autocomplete="off">
<button class="add-todo">Add</button>
</div>
<div class="todo-lists">
<ul>
<!-- <li></li>
<li><span class="name">Start Reading New Book</span><span class="action">C</span></li>
<li><span class="name">Check Some Accessibility.</span><span class="action">C</span></li>
<li><span class="name">Timely Sleep</span><span class="action">C</span></li> -->
</ul>
</div>
</div>
<div class="todo-footer">
<span class="text">You have a <b class="countItem">0</b> Pending Task</span>
<button class="clearall">Clear All</button>
</div>
</div>
<!-- scriping file in js -->
<script src="./public/js/app.js"></script>
</body>
</html>