-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (30 loc) · 977 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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Shopping List</title>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8">
</head>
<body>
<div class="container">
<p>
<fieldset>
<legend><span class="number">1</span>To Buy</legend>
<label for="new-task">What do you wanna buy?</label><input id="new-task" type="text" placeholder="Add Item"><button>Add</button>
</fieldset>
</p>
<fieldset>
<legend><span class="number">2</span>Checklist</legend>
<h3> NOT BOUGHT</h3>
<ul id="incomplete-tasks">
</ul>
</fieldset>
<fieldset>
<h3>BOUGHT</h3>
<ul id="completed-tasks">
</ul>
</fieldset>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>