-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (22 loc) · 817 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Todo list app</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/reset.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<input type="text" placeholder="Enter an activity.." id="item">
<button id="add">+</button>
</header>
<div class="container">
<ul class="todo" id="todo"></ul>
<ul class="todo" id="completed"></ul>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>