-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
30 lines (26 loc) · 974 Bytes
/
todo.html
File metadata and controls
30 lines (26 loc) · 974 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple To Do Application</title>
<link rel="stylesheet" href="styl.css">
</head>
<body>
<div id="container">
<div class="controls">
<h1>My TODO</h1>
<input type="text" id="input"><br>
<button type="button" onclick="addItem()" id="add">Add TODO</button>
<button type="button" id="remove">Remove done TODO</button>
</div>
<ul id="list">
<li class="myCheck"><input type="checkbox" id="check">
<label >Go to gym</label></li>
<li class="myCheck">
<input type="checkbox" id="check" checked>
<label >Record youtube video</label>
</li>
</ul>
</div>
<script src="todo.js"></script>
</body>
</html>