-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 loc) · 899 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>ToDoApp</title>
</head>
<body>
<input type="text" class="new-todo-description">
<button class="new-todo-add-button">Add Todo</button>
<hr>
<div class="radiobutton-filter-to-dos">
<input type="radio" id="filter-open" name="filter">
<label for="filter-open">open</label>
<input type="radio" id="filter-done" name="filter">
<label for="filter-done">done</label>
<input type="radio" id="filter-all" name="filter">
<label for="filter-all">all</label>
</div>
<hr>
<button class="remove-done-todos-button">Remove Done Todos</button>
<ul class="todo-list">
</ul>
<script src="./script.js"></script>
</body>
</html>