-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
executable file
·209 lines (178 loc) · 7.16 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sprint Challenge - Menu</title>
<link rel="stylesheet" href="css/menu.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<script src="https://kit.fontawesome.com/5b12ffad4b.js" crossorigin="anonymous"></script>
</head>
<body>
<div>
<!-- header -->
<header>
<div>
<a href="index.html"><h1>BLOOMTECH BAR AND GRILL</h1></a>
<!-- nav -->
<div class="navbar">
<nav>
<div class="menu-bar">
<a href="menu.html">Menu</a>
<a href="reservations.html">Reservations</a>
<a href="specialoffers.html">Special Offers</a>
<a href="contact.html">Contact</a>
</div>
<div class="social-media">
<a href="https://www.facebook.com"><i class="fa-brands fa-facebook">facebook</i></a>
<a href="https://www.twitter.com"><i class="fa-brands fa-twitter">twitter</i></a>
<a href="https://www.instagram.com"><i class="fa-brands fa-instagram">instagram</i></a>
</div>
</nav>
</div>
</div>
</header>
<!-- spacer -->
<div class="spacer"></div>
<!-- menu -->
<article class="menu">
<div class="menu-container">
<h2>Food & Drink</h2>
<div class="menu-section">
<h3>Drinks</h3>
<div class="menu-item">
<h4>Soda</h4>
<h4>$2</h4>
<p class="description">Coke products</p>
</div>
<div class="menu-item">
<h4>Coffee</h4>
<h4>$2</h4>
<p class="description">Cream and sugar available upon request</p>
</div>
<div class="menu-item">
<h4>Beer</h4>
<h4>$5</h4>
<p class="description">Delicious and refreshing</p>
</div>
<div class="menu-item">
<h4>Wine</h4>
<h4>$5</h4>
<p class="description">Light and fruity</p>
</div>
<div class="menu-item">
<h4>Cocktail</h4>
<h4>$10</h4>
<p class="description">Ask about our specials</p>
</div>
</div>
<div class="menu-section">
<h3>Appetizers</h3>
<div class="menu-item">
<h4>Fried Pickles</h4>
<h4>$6</h4>
<p class="description">Golden and crispy with tang!</p>
<p>(V)</p>
</div>
<div class="menu-item">
<h4>Buffalo Wings</h4>
<h4>$10</h4>
<p class="description">5 wings per order; mild, medium, or hot sauce and served with bleu cheese/ranch and carrot sticks</p>
<p>(GF)</p>
</div>
<div class="menu-item">
<h4>Poutine</p>
<h4>$5</h4>
<p class="description">Homemade fries topped with everything but the kitchen sink</p>
</div>
</div>
<div class="menu-section">
<h3>Soup and Salad</h3>
<div class="menu-item">
<h4>House Salad</h4>
<h4>$8</h4>
<p class="description">Spinach and arugala with all the good veggies; add chicken for $6</p>
<p>(GF, V)</p>
</div>
<div class="menu-item">
<h4>French Onion Soup</h4>
<h4>$4</h4>
<p class="description">Served with a thick topping of cheese and delicious bread</p>
</div>
<div class="menu-item">
<h4>Cheddar Broccoli Soup</h4>
<h4>$5</h4>
<p>Creamy and filling</p>
<p>(GF)</p>
</div>
</div>
<div class="menu-section">
<h3>Entrees</h3>
<div class="menu-item">
<h4>Ribeye Steak</h4>
<h4>$32</h4>
<p class="description">Served with mashed potatoes and roasted asparagus</p>
</div>
<div class="menu-item">
<h4>Big Boy Burger</h4>
<h4>$14</h4>
<p class="description">Beef or black bean burger on homemade bun served with fries</p>
<p>Black Bean Burger: (V)</p>
</div>
<div class="menu-item">
<h4>Pork Shortrib</h4>
<h4>$18</h4>
<p class="description">Melt off the bone finger food</p>
<p>(GF)</p>
</div>
</div>
<div class="menu-section">
<h3>Desserts</h3>
<div class="menu-item">
<h4>Flourless Chocolate Cake</h4>
<h4>$7</h4>
<p class="description">Gooey and chocolatey heaven</p>
<p>(GF)</p>
</div>
<div class="menu-item">
<h4>Cookies and Ice Cream</h4>
<h4>$6</h4>
<p class="description">Choose 2 cookies and 1 scoop of ice cream from an assortment</p>
</div>
<div class="menu-item">
<h4>Creme Brulee</h4>
<h4>$8</h4>
<p class="description">Crispy scorched top containing a perfect, smooth custard</p>
<p>(GF)</p>
</div>
</div>
</div>
</article>
<!-- spacer -->
<div class="spacer-sm"></div>
<footer>
<!-- nav -->
<div class="navbar">
<nav>
<!-- email signup -->
<div class="email">
<h3>Join our mailing list!</h2>
<input type="text" name="email" placeholder="Email Address">
<button>Sign Up</button>
</div>
<div class="menu-bar">
<a href="menu.html">Menu</a>
<a href="reservations.html">Reservations</a>
<a href="specialoffers.html">Special Offers</a>
<a href="contact.html">Contact</a>
</div>
</nav>
</div>
<!-- copyright -->
<div class="copyright">
<p>©2022 BloomTech Restaurant Group, Inc. All Rights Reserved.</p>
</div>
</footer>
</div>
</body>
</html>