-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 929 Bytes
/
index.html
File metadata and controls
49 lines (39 loc) · 929 Bytes
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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Todo App</title>
<style>
.task-container {
list-style: none;
padding: 10px;
margin: 10px;
width: 40%;
float: left;
border: 1px solid #000000;
background: #eee;
}
ul {
list-style: none;
}
</style>
</head>
<body>
<div id="root">
<h1>To-do list</h1>
<input type="text" id="input"/>
<button id="add_todo">ADD TASK</button>
<hr/>
<div class="task-container">
<h3>Pending List</h3>
<ul id="pending_list"></ul>
</div>
<div class="task-container">
<h3>Done List</h3>
<ul id="done_list"></ul>
</div>
</div>
<script src="out/production/Todo%20App/lib/kotlin.js"></script>
<script src="out/production/Todo%20App/Todo%20App.js"></script>
</body>
</html>