-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (33 loc) · 1.16 KB
/
index.html
File metadata and controls
42 lines (33 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Todo Application</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div class="controls">
<h1>TODO APP </h1>
<input type="text" name="" id="input">
<br>
<br>
<button type = "button" id="add">Add TODO</button>
<button type =" button" id = 'remove'>Remove Done TODO</button>
<button type="button" id = 'clear'>Clear All</button>
</div>
<ul id="list">
<li class="mycheck"><input type="checkbox" name="" id="check">
<label>Bring fruits</label>
</li>
<li class="mycheck"><input type="checkbox" name="" id="check" checked>
<label>Todo2</label>
</li>
<li class="mycheck"><input type="checkbox" name="" id="check" checked>
<label>Todo3</label>
</li>
</div>
<script src ='todo.js'></script>
</body>
</html>