-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
111 lines (104 loc) · 2.39 KB
/
menu.html
File metadata and controls
111 lines (104 loc) · 2.39 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
</head>
<body>
<div>
<table>
<tr>
<th><img src="./images/logo.svg" alt="logo"></th>
<th><h1>RaspberryPi</h1></th>
</tr>
</table>
<h2>Menu</h2>
</div>
<div>
<table border="1">
<tr>
<th colspan="2">DESSERTS</th>
<th colspan="2">FLAVORS</th>
<th colspan="2">TOPPINGS</th>
</tr>
<tr>
<td rowspan="3">Cakes</td>
<td rowspan="3">$55.00</td>
<td>Chocolate</td>
<td rowspan="3">+$7.50</td>
<td>Almonds</td>
<td rowspan="3">+$2.50</td>
</tr>
<tr>
<td>Strawberry</td>
<td>Coconuts</td>
</tr>
<tr>
<td>Vanilla</td>
<td>Strawberries</td>
</tr>
<tr>
<td rowspan="5">Pies</td>
<td rowspan="5">$30.00</td>
<td>Apple</td>
<td rowspan="5">+$5.00</td>
<td>Chocolate Shavings</td>
<td rowspan="3">+$1.50</td>
</tr>
<tr>
<td>Blackberry</td>
<td>Pineapples</td>
</tr>
<tr>
<td>Blueberry</td>
<td>Raspberries</td>
</tr>
<tr>
<td>Pineapples</td>
<td>Crushed Oreos</td>
<td rowspan="2">+$2.50</td>
</tr>
<tr>
<td>Raspberry</td>
<td>M&M's</td>
</tr>
<tr>
<td rowspan="4">Cupcakes</td>
<td rowspan="4">$3.50</td>
<td>Blueberry</td>
<td rowspan="2">+$0.50</td>
<td>Almonds</td>
<td rowspan="4">+$0.50</td>
</tr>
<tr>
<td>Strawberry</td>
<td>Chocolate Shavings</td>
</tr>
<tr>
<td>Chocolate</td>
<td rowspan="2">+$0.75</td>
<td>Granola</td>
</tr>
<tr>
<td>Vanilla</td>
<td>Sprinkles</td>
</tr>
</table>
</div>
<br>
<p>Raspberry Pie w/ Crushed Oreos price: $37.50</p>
<a href="./orderForm.html"><button>Make Order</button></a>
<br><br><br>
About Us
<br>
<p>
You can find us in Westpoint Shopping Centre Shop 1072 Fresh Food, 17 Patrick Street Blacktown NSW 2148
<br>
We work from Monday to Friday at 7:00 AM to 3:00 PM
<br>
Telephone number: +09 290 603 2022
</p>
</body>
</html>