forked from Karimashour/ToDo-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!---------------- Scout Icons ---------------->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.8/css/line.css">
<!---------------- CSS ---------------->
<link rel="stylesheet" href="style.css">
<!------------------------------------->
<title>ToDO App </title>
</head>
<body>
<div class="wrapper">
<div class="task-input">
<i class="uil uil-bars"></i>
<input type="text" placeholder="Add a New Task">
</div>
<div class="controls">
<div class="filters">
<span id="all" class="active">
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>
</div>
<!------------- Js ------------->
<script src="script.js"></script>
</body>
</html>