forked from ammiranda/shopping_cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 823 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="shopping_cart.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script type="text/javascript" src="script.js"></script>
<title>
Shopping Cart!
</title>
</head>
<body>
<div class="container">
<div class="form">
<header>Shopping List</header>
<p>Enter the items you want on your list!</p><br>
<form>
<input id="itemName" type="text" name="item" size=40 placeholder="Enter an item">
<input type="submit" name="Submit" id="submit">
<input type="submit" value="Remove Checked Items" id="remove">
</form>
<form id="shoppingList">
<ul id="theList">
</ul>
</form>
</div>
</div>
</body>
</html>