-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
index.html
36 lines (31 loc) · 1 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Coffee Tasks</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class="light-mode">
<h1><center>Coffee Tasks</center></h1>
<label class="switch" id="mode-toggle">
<input type="checkbox" id="toggle-switch">
<span class="slider round"></span>
</label>
<section class="wrapper" id="wrapper">
<div class="task-input">
<input type="text" placeholder="Add a new task" id="input">
</div>
<div class="controls">
<div class="filters">
<span class="active" id="all">All</span>
<span id="pending">Pending</span>
<span id="completed">Completed</span>
</div>
<button class="clear-btn">Clear All</button>
</div>
<ul class="task-box"></ul>
</section>
<script src="script.js"></script>
</body>
</html>