-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (37 loc) · 1.21 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<head>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<title>
Shopping Cart App!
</title>
</head>
<body>
<div class="container col-lg-6 col-md-8 col-sm-12 col-lg-offset-3 col-md-offset-2">
<div class="form text-center">
<h1>
Shopping List
</h1>
<p class="text-center">
Enter the items you want on your list! When you want to remove an item click the checkbox and click the remove button.
</p>
<p id="errormsg">
Please enter a value!
</p>
<form id="inputForm">
<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" id="remove">
</form>
<form id="shoppingList">
<ul id="theList">
</ul>
</form>
</div>
</div>
<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 src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>