-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
47 lines (44 loc) · 1.37 KB
/
todo.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
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TO DO APP</title>
<link rel="stylesheet" href="./todostyle.css">
</head>
<body>
<header>
<h1>TODO: js app 01</h1>
</header>
<main>
<form>
<input type="text" name="todo-input" id="todo-input">
<button type="submit" class="add-todo-btn">
<span>+</span>
</button>
</form>
<div class="todo-wrapper">
<div class="todo-container">
<ul class="todo-list">
<!--the content will be add wih js-->
</ul>
</div>
<form>
<div class="form-group">
<input type="radio" name="type" id="all" checked>
<label for="all">All</label>
</div>
<div class="form-group">
<input type="radio" name="type" id="done">
<label for="all">Done</label>
</div>
<div class="form-group">
<input type="radio" name="type" id="deleted">
<label for="all">Deleted</label>
</div>
</form>
</div>
</main>
<script src="./todoapp.js"></script>
</body>
</html>