-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 881 Bytes
/
index.html
File metadata and controls
38 lines (31 loc) · 881 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
32
33
34
35
36
37
38
<!-- Assignment 4 - Shopping List -->
<!DOCTYPE html>
<html>
<head>
<title>Shopping List</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/shoppingstyle.css">
<script src="js/shoppingajax.js"></script>
</head>
<body>
<div id="container">
<div id="header">
<h1>My Shopping List!</h1>
<h2>by George Hady, 000821026</h2>
</div>
<div id="body">
<form id="form">
<div>
<input type="text" id="item" placeholder="item" required>
<input type="number" id="quantity" value="1" min="1" required>
<input type="submit">
</div>
<div>
<table id="items">
</table>
</div>
</form>
</div>
</div>
</body>
</html>