-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<title>To Do List</title>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>10-1-2022</title>
<link rel="stylesheet" href="css/main.css">
<link rel="icon" href="https://th.bing.com/th/id/R.2e2cd46024af4c88cb40224ccff6186e?rik=RFj5YI7Tcpba%2bg&riu=http%3a%2f%2fclipart-library.com%2fimage_gallery%2f187851.png&ehk=3pXIot111RQORPoOsSmvqAhoSIO5O4RnGW7IRyMMKO4%3d&risl=&pid=ImgRaw&r=0"
<script src="https://kit.fontawesome.com/5a640b4ad7.js" crossorigin="anonymous"></script>
</head>
<body>
<h1>To Do List</h1>
<div class="header">
<div class="icon">
</div>
<input class="text" type="text" placeholder="Add task here ">
<button class="addTask button-text">Add Task</button>
</div>
<div class="tasks">
<div class="clear_all button-text">Clear All</div>
</div>
<script src="js/main.js"></script>
</body>
</html>