-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 833 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
<html>
<head>
<title>JavaScript to do list</title>
<link rel="stylesheet" href="style.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-completed-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="script.js"></script>
</body>
</html>