-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Todo's</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<h1 align="center">To-Do List</h1><br>
<hr>
<h2 align="center">Save your tasks!!!Complete them on time</h2>
</head>
<img src="./tdo.jpeg" class="img" align="left">
<body>
<div class="wrapper">
<div class="task-input">
<input type="text" placeholder="Save your Tasks">
</div>
<div class="controls">
<div class="filters">
<span class="active" id="all">All</span>
<span id="completed">Completed</span>
<span id="pending">Pending</span>
</div>
<button class="clear-btn">Clear All</button>
</div>
<ul class="task-box"></ul>
</div>
<script src="script.js"></script>
</body>
<br>
<hr>
<footer align="center">
@ MEHRUN SHAMSHI
</footer>
</html>