-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
37 lines (35 loc) · 953 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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TODO APP</title>
<link rel="stylesheet" type="text/css" href="css/todoapp.css">
</head>
<body>
<h1 class="app-title">TODO LIST</h1>
<div id="todo-view">
<ul id="list-content">
</ul>
<p id="input-add-item">
<input type="text" id="input-content">
<button type="button" id="button-add-item">ADD</button>
</p>
<p>
<button type="button" id="button-view-finished">VIEW FINISHED</button>
</p>
</div>
<div id="finished-view" class="hidden">
<ul id="finished-list-content">
</ul>
<p>
<button type="button" id="button-return">RETURN</button>
</p>
</div>
<script src="model/timeStamp.js"></script>
<script src="model/todoItem.js"></script>
<script src="model/todoList.js"></script>
<script src="item.js"></script>
<script src="list.js"></script>
<script src="todoapp.js"></script>
</body>
</html>