-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodoapp.html
More file actions
33 lines (25 loc) · 937 Bytes
/
todoapp.html
File metadata and controls
33 lines (25 loc) · 937 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
31
32
33
<html>
<head>
<title>JavaScript to do list</title>
<link rel="stylesheet" href="todoapp.css">
</head>
<body>
<div class="todo-wrapper">
<h2>My to do list</h2>
<p>Double click an item to mark it complete</p>
<form name="todo-adder">
<input type="text" id="todo-entry-box"/>
</form>
<button id="add-button" class="pretty-button">Add</button>
<br>
<ol id="todo-list">
</ol>
<div id="control-wrapper">
<button id="clear-button" class="pretty-button">Clear Completed</button>
<button id="empty-button" class="pretty-button">Empty List</button>
<button id="save-button" class="pretty-button">Save list</button>
</div>
</div>
<script src="todoapp.js"></script>
</body>
</html>