-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Todo List App</title>
<!-- Roboto font embed -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="reset.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<input type="text" placeholder="Enter an activity.." id="item">
<button id="add">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve"><g><path class="fill" d="M16,8c0,0.5-0.5,1-1,1H9v6c0,0.5-0.5,1-1,1s-1-0.5-1-1V9H1C0.5,9,0,8.5,0,8s0.5-1,1-1h6V1c0-0.5,0.5-1,1-1s1,0.5,1,1v6h6C15.5,7,16,7.5,16,8z"/></g></svg>
</button>
</header>
<div class="container">
<!-- Uncompleted tasks -->
<ul class="todo" id="todo"></ul>
<!-- Completed tasks -->
<ul class="todo" id="completed"></ul>
</div>
<!-- JavaScripts -->
<script src="main.js"></script>
</body>
</html>