forked from HackerUSA-CE/HTML-Restaurant-Menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
191 lines (186 loc) · 5.25 KB
/
menu.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Remember to link to your CSS file! -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"/>
</head>
<body>
<img id="easterbanner" alt="Closed for Easter Banner" src="assets/images/Easterbanner.jpg">
<!-- MENU PAGE -->
<H1>Our Menu</H1>
<!-- TODO: Navbar here -->
<nav class = "123">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About </a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- TODO: Banner Image here-->
<img id="banner" alt="Banner logo" src="./assets/images/banner.png">
<main>
<!-- Your job is to make the menu items in each section below a proper table! -->
<p><i class="fa fa-fire"></i> Most Spicy</p>
<p><i class="fa fa-star"></i> Most Popular</p>
<h2>Appetizers</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Chicken Satay</td>
<td>$7.95</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Fresh Rolls</td>
<td>$6.95</td>
</tr>
</tfoot>
</table>
<h2>Lunch</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Panang Curry <i class="fa fa-fire"></i></td>
<td>$9.95</td>
</tr>
<tr>
<td>Red Curry</td>
<td>$9.95</td>
</tr>
<tr>
<td>Yellow Curry</td>
<td>$8.95</td>
</tr>
<tr>
<td>Tom Ka Soup</td>
<td>$8.95</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Tom Yum Soup <i class="fa fa-fire"></i></td>
<td>$8.95</td>
</tr>
</tfoot>
</table>
<h2>Dinner</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td> Pad Thai <i class="fa fa-fire"></i><i class="fa fa-star"></i></td>
<td>$10.95</td>
</tr>
<tr>
<td>Pad See Ew <i class="fa fa-star"></i></td>
<td>$10.49</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Rad Nah</td>
<td>$10.49</td>
</tr>
</tfoot>
</table>
<h2>Dessert</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Black Sticky Rice Pudding</td>
<td>$3.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Mango Sticky Rice <i class="fa fa-star"></i></td>
<td>$5.99</td>
</tr>
</tfoot>
</table>
<h2>Beverages</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Thai Iced Coffee</td>
<td>$3.49</td>
</tr>
<tr>
<td>Thai Iced Tea</td>
<td>$3.49</td>
</tr>
</tbody>
<tfoot>
<tr>
<td> Unsweetened Iced Tea</td>
<td>$2.49</td>
</tr>
</tfoot>
</table>
<h2>Side Orders</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jasmine rice</td>
<td>$1.99</td>
</tr>
<tr>
<td>Brown rice</td>
<td>$2.49</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Cucumber Salad</td>
<td>$2.99</td>
</tr>
</tfoot>
</table>
</main>
</body>
</html>