forked from CodeExplainedRepo/To-Do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.53 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 1.53 KB
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
39
40
41
42
43
44
<!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>Too many lists to do</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Titillium+Web">
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</script>
</head>
<body>
<div class="container">
<div class="header">
<div class="clear">
<i class="fa fa-refresh"></i>
</div>
<div class="display">
<span id="date"></span>
<i class="fa fa-pencil-square-o All"></i>
<i class="fa fa-check-square-o fulfill"></i>
<i class="fa fa-square-o unfinished"></i>
</div>
</div>
<div class="content">
<ul id="list"><!--
<li class="item">
<i class="fa fa-circle-thin co"></i>
<p class="text">Drink Coffee</p>
<i class="fa fa-trash-o de"></i>
</li> -->
</ul>
</div>
<div class="add-to-do">
<i class="fa fa-plus-circle"></i>
<input type="text" id="input" placeholder="Add a to-do">
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>