-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (79 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Keep track of your daily tasks by using Todo App"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<link rel="stylesheet" href="css/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>Frontend Mentor | Todo app</title>
</head>
<body>
<section class="todo-app light">
<div class="container">
<header>
<div class="logo">todo</div>
<img src="images/icon-sun.svg" data-theme="light" alt="icon-sun" />
<img
class="available"
src="images/icon-moon.svg"
data-theme="dark"
alt="icon-moon"
/>
</header>
<div class="input-field">
<span class="icon"></span>
<input
type="text"
name="todo"
data-placeholder="Create a new task..."
placeholder="Create a new task..."
/>
</div>
<div class="todo-list">
<ul>
<!-- Todo items Here -->
</ul>
<div class="controls">
<div class="left-items">
<span class="number"></span> items left
</div>
<ul class="filters">
<li class="selected" data-filter="todo">All</li>
<li data-filter="active">Active</li>
<li data-filter="completed">Completed</li>
</ul>
<div class="clear-completed">Clear Completed</div>
</div>
</div>
<div class="note">Drag and drop to reorder list</div>
</div>
<div class="copyright">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by
<a
href="https://github.com/victorpreston"
target="_blank"
>victorpreston</a
>.
</div>
</section>
<script src="js/main.js"></script>
<script src="js/dark.js"></script>
<script src="js/sortable.js"></script>
</body>
</html>