-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 930 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
<!DOCTYPE html>
<html>
<head>
<title>Practical Todos</title>
<link id="favicon" rel="icon" href="https://hyperdev.com/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 class="titleHeader">Todo List</h1>
<div>
<button onclick="handlers.toggleAll()">Toggle All</button>
</div>
<div>
<button onclick="handlers.addTodo()">Add</button>
<input id="addTodoTextInput" type="text">
</div>
<div>
<button onclick="handlers.changeTodo()">Change Todo</button>
<input id="changeTodoPositionInput" type="number">
<input id="changeTodoTextInput" type="text">
</div>
<div>
<button onclick="handlers.toggleCompleted()">Toggle Completed</button>
<input id="toggleCompletedPositionInput" type="number">
</div>
<ul>
</ul>
<script src="app.js"></script>
</body>
</html>