-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
53 lines (53 loc) · 1.36 KB
/
todo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>ToDo List</title>
<link rel="stylesheet" href="./styles/todo.css" />
<link
rel="shortcut icon"
href="./assets/icons/favicon.png"
type="image/png"
/>
<script
src="https://use.fontawesome.com/releases/v5.13.0/js/all.js"
data-auto-replace-svg="nest"
></script>
</head>
<body>
<div class="background"></div>
<div class="main">
<div class="add-task">
<p class="main-label">TASKS</p>
<input
class="add-task-field"
type="text"
placeholder="Take a Note"
name="new"
/><input
type="button"
name="add"
class="add-task-button"
value="Add Task"
/>
</div>
<div class="todo">
<div class="navigation">
<div class="filters">
<div class="filter active">All</div>
<div class="filter">Active</div>
<div class="filter">Completed</div>
</div>
<input
class="search-field"
type="search"
placeholder="Search Task"
name="search"
/>
</div>
<div class="tasks"></div>
</div>
</div>
<script src="./scripts/todo.js"></script>
</body>
</html>