-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 693 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (26 loc) · 693 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>To-Do List</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="list">
<div class="item">
<p class="item-body">ICS 33 Homework</p>
<p class="item-time">9:00</p>
</div>
<div class="item">
<p class="item-body">ICS 51 Homework</p>
<p class="item-time">10:00</p>
</div>
</div>
<div class="item" id="new">
<input id="new-body" placeholder="new item"></input>
<button id="new-add">Add Item</button>
</div>
<script src="index.js">
</script>
</body>
</html>