-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1 KB
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Shopping List</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/shoppingList.js"></script>
<script src="js/arrayList.js"></script>
<script src="js/localStorageList.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<header>
<h1 id="title">LISTOMANIA</h1>
<div id="input_area">
<fieldset id="input_controls">
<input id="new_item_input" type="text" placeholder="Enter new shopping list item" name="new_item" autofocus>
<input class="button" id="add_item_button" type="submit" value="Add Item">
</fieldset>
<fieldset id="list_manipulation_controls">
<input class="button" id="sort_button" type="submit" value="Sort List">
<input class="button" id="clear_button" type="submit" value="Clear List">
</fieldset>
</div>
</header>
<div id="list_area">
</div>
</body>
</html>