-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbakery.html
More file actions
36 lines (35 loc) · 780 Bytes
/
bakery.html
File metadata and controls
36 lines (35 loc) · 780 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
<!DOCTYPE html>
<html>
<head>
<title> ST. Annes Bakery</title>
</head>
<body>
<h1>Welcome Home</h1>
<h3>Baker Menu</h3>
<form>
<table border="2">
<thead>
<tr>
<th>item</th>
<th>price per quantity</th>
<th>quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>Chocolates</td>
<td>$10 per unit</td>
<td><input type="number" name="chocolate" width="10"> units</td>
</tr>
<tr>
<td>Bread</td>
<td>$5 per pound</td>
<td><input type="number" name="bread"> pounds</td>
</tr>
</tbody>
</table>
<button onclick="price();return false;">checkout</button>
</form>
<script type="text/javascript" src="bakery.js"></script>
</body>
</html>