-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 1.09 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">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/71d880897d.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Baloo+Thambi+2&display=swap" rel="stylesheet">
<title>Todo List</title>
</head>
<body>
<div class="container">
<div class="header">
<img src="bg.jpg" alt="">
<div class="clear">
<i class="fa fa-refresh reset"></i>
</div>
<div id="date">sunday 14 march</div>
</div>
<div class="content">
<ul id="list">
</ul>
</div>
<div class="add-to-do">
<i class="fa fa-plus-circle" aria-hidden="true"></i>
<input type="text" id="input" placeholder="Add a to-do" autofocus>
</div>
</div>
<script src="script.js"></script>
</body>
</html>