-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>To Do List</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
</head>
<body>
<div class="header">A TO DO LIST</div>
<div class="container">
<form>
<input class="input" type="text" placeholder="Your task goes here..." />
<button class="button" type="submit" alt="Add your task">
<div class="plussign-circle">
<div class="plus-vertical"></div>
<div class="plus-horizontal"></div>
</div>
</button>
</form>
<ul></ul>
<div class="clear-div">
<input type="button" class="clear-btn" value="Clear All" />
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>