-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
351 lines (344 loc) · 18.1 KB
/
index.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<!-- Header with style sheet and title-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Restaurant, Families, Buisness">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/stylesheet.css">
<title>Fork & Knife</title>
</head>
<!-- /Header with style sheet and title-->
<body>
<header class="container-fluid alert-container">
<!-- Alert-->
<div class="row d-none d-sm-block">
<div class="col-12">
<div class="site-wide-alert alert-warning">
<strong>
<i class="fas fa-asterisk" aria-hidden="true"></i>
Due to Government Guidelines we are closed! Hope to see you all soon!
<i class="fas fa-asterisk" aria-hidden="true"></i>
</strong>
</div>
</div>
</div>
<!-- /alert-->
<!-- Navigation -->
<nav class="navbar navbar-expand-sm navbar-dark">
<div class="container-fluid navbar-items">
<a href="index.html" class="navbar-brand"> Fork & Knife <i class="fas fa-utensils"
aria-hidden="true"></i>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarmenu"
aria-controls="navbarmenu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarmenu">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"> Home </a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false"> Menu </a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="alacarte.html"> A La Carte </a></li>
<li><a class="dropdown-item" href="lunch.html"> Lunch </a></li>
<li><a class="dropdown-item" href="pretheatre.html"> Pre-Theatre </a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="offers.html"> Offers </a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="contatct.html"> Contact </a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- /navigation -->
<!-- Index Callout -->
<main class="container-fluid callout-container">
<div class="row">
<div class="col-12">
<div class="callout jumbotron text-center">
<h1 class="jumbotron-header text-uppercase jumboton-callout-header"> A Combination of
North Indian &
South Indian Cuisine!
</h1>
<a class="btn btn-success callout-button" href="alacarte.html"> Discover our Menus </a>
<button class="btn btn-success callout-button" data-bs-toggle="modal"
data-bs-target="#bookingModal">
Book a Table
</button>
</div>
</div>
</div>
</main>
<!-- /index callout -->
<!-- About-->
<article class="container-fluid container-wrapper-about">
<div class="container about-container">
<div class="about text-center">
<div class="row">
<div class="col-12">
<h2 class="text-uppercase page-header"> About </h2>
<p> We are pioneers of real North Indian & South Indian cuisine in Scotland. Since we opened
in
1990,
we have endeavoured to bring the true essence of both cuisine's to Glasgow.
This isn’t your standard curry, this is cuisine that has been refined over hundreds of
years,
but given a modern touch. Our unique menu of chicken, lamb and vegetarian
preparations have become
favourites amongst the discerning customer. Diners can also enjoy the views of an open
plan
kitchen where
chefs prepare dishes and breads which are a sight to be enjoyed in their own right.
</p>
</div>
</div>
</div>
</div>
</article>
<!-- /about -->
<!-- Gallery -->
<section class="container gallery-container">
<div class="gallery text-center">
<div class="row">
<div class="col-12">
<h2 class="text-uppercase page-header"> Gallery </h2>
<div id="carouselIndicators" class="carousel slide" data-bs-ride="carousel">
<ol class="carousel-indicators">
<li data-bs-target="#carouselIndicators" data-bs-slide-to="0" class="active"></li>
<li data-bs-target="#carouselIndicators" data-bs-slide-to="1"></li>
<li data-bs-target="#carouselIndicators" data-bs-slide-to="2"></li>
<li data-bs-target="#carouselIndicators" data-bs-slide-to="4"></li>
</ol>
<figure class="carousel-inner">
<div class="carousel-item active">
<img src="../fork-knife/assets/images/carouselimg1.jpg"
class="img-fluid mx-auto d-block h-100" alt="Image of Spices">
</div>
<div class="carousel-item">
<img src="../fork-knife/assets/images/carouselimg2.jpg"
class="img-fluid mx-auto d-block h-100" alt="Image of Flambe">
</div>
<div class="carousel-item">
<img src="../fork-knife/assets/images/carouselimg3.jpg"
class="img-fluid mx-auto d-block h-100" alt="Image of Restaurant">
</div>
<div class="carousel-item">
<img src="../fork-knife/assets/images/carouselimg4.jpg"
class="img-fluid mx-auto d-block h-100" alt="Imgage of Food">
</div>
</figure>
<a class="carousel-control-prev" href="#carouselIndicators" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselIndicators" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- /gallery -->
<!-- Review -->
<section class="container-wrapper">
<div class="container reviews-container">
<div class="reviews">
<div class="row">
<div class="col-12">
<h2 class="text-uppercase text-center page-header"> <i class="fas fa-comments d-none d-sm-block"
aria-hidden="true"></i> Reviews </h2>
</div>
<div class="col-12 col-md-6 col-lg-4">
<div class="reviews">
<h3> Metro </h3>
<p> Excellent eating experience. From walking in the door and being greeted by employees,
seated and drink order taken, was maybe 5 minutes. Meal was served hot and excellent
taste. Server was very friendly and helpful.
</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4">
<div class="reviews">
<h3> Glasgow Times </h3>
<p> Atmosphere is great, staff are really amazing and helpful! I was not sure on what to
have, the staff really knows what they are selling. Food came out in a reasonable
pace.
</p>
</div>
</div>
<div class="col-12 d-md-none d-lg-block col-lg-4">
<div class="reviews">
<h3> Herald Scotland </h3>
<p> Got an exciting menu that is exciting for all age groups! </p>
</div>
</div>
<div class="col-12">
<p class="btn btn-success btn-sm btn-feedback" data-bs-toggle="modal"
data-bs-target="#feedbackModal">
Submit a Feedback </p>
</div>
</div>
</div>
</div>
</section>
<!-- /review -->
<!-- Footer -->
<footer class="container footer-container">
<div class="footer">
<div class="row">
<div class="col-12 col-lg-4">
<div class="footer">
<h4 class="footer-heading"> Make a Booking </h4>
<p> 0141 7630 664 </p>
<p> forkandknife@hotmail.com </p>
</div>
</div>
<div class="col-12 d-md-none d-lg-block col-lg-4">
<div class="footer">
<h4 class="footer-heading-address"> Address </h4>
<p> 71 North Hanover St, </p>
<p> Glasgow, G2 1DU </p>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="footer">
<h4 class="footer-heading"> Opening Times </h4>
<p> Mon-Sun </p>
<p> 12pm till 11pm. </p>
</div>
</div>
<ul class="list-inline footer-links">
<li class="list-inline-item">
<a href="https://www.facebook.com/" target="_blank">
<i class="fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only"> Facebook </span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/" target="_blank">
<i class="fab fa-instagram-square" aria-hidden="true"></i>
<span class="sr-only"> Instagram </span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.tripadvisor.com/" target="_blank">
<i class="fab fa-tripadvisor" aria-hidden="true"></i>
<span class="sr-only"> Trip Advisor </span>
</a>
</li>
</ul>
</div>
</div>
</footer>
<!-- /footer-->
<!-- Modal Booking-->
<div class="modal fade" id="bookingModal" tabindex="-1" aria-labelledby="bookingModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<form action="https://formdump.codeinstitute.net/" method="POST">
<div class="modal-header">
<h5 class="modal-title" id="bookingModalLabel"> Book a Table </h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="form-group">
<label for="firstname">First Name: </label>
<input type="text" class="form-control" id="firstname" placeholder="First Name" required>
</div>
<div class="form-group">
<label for="lastname">Last Name: </label>
<input type="text" class="form-control" id="lastname" placeholder="Last Name" required>
</div>
<div class="form-group">
<label for="email">Email address: </label>
<input type="email" class="form-control" id="email" placeholder="Enter email" required>
</div>
<div class="form-group">
<label for="tel">Phone: </label>
<input type="tel" class="form-control" id="tel" placeholder="Phone Number" required>
</div>
<div class="form-group">
<label for="howmany">How Many:</label>
<input type="number" class="form-control" id="howmany" name="quantity" min="1" max="20">
</div>
<div class="form-group">
<label for="date"> Date: </label>
<input type="date" name="date" class="form-control" id="date" min="2021-01-11"
max="2021-03-30" required>
</div>
<div class="form-group">
<label for="appt">Select a time:</label>
<input type="time" class="form-control" id="appt" name="appt" required>
</div>
<div class="form-group">
<label for="message">Any Requests: </label>
<textarea name="message" class="form-control" id="message" rows="5"
placeholder="Your message here"></textarea>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-success"> Book a Table </button>
</div>
</form>
</div>
</div>
</div>
<!-- /modal Booking-->
<!-- Modal Feedback-->
<div class="modal fade" id="feedbackModal" tabindex="-1" aria-labelledby="feedbackModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<form action="https://formdump.codeinstitute.net/" method="POST">
<div class="modal-header">
<h5 class="modal-title" id="feedbackModalLabel"> Submit a Feedback</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="form-group">
<label for="name"> Name: </label>
<input type="text" class="form-control" id="name" placeholder="Name" required>
</div>
<div class="form-group">
<label for="messagetwo">Submit a Feedback</label>
<textarea name="messagetwo" class="form-control" id="messagetwo" rows="5"
placeholder="Your message here"></textarea>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-success"> Submit a Feedback </button>
</div>
</form>
</div>
</div>
</div>
<!-- /modal feedback-->
<!-- External Scripts-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"
integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU"
crossorigin="anonymous"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js"
integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script> -->
<script src="https://kit.fontawesome.com/6504a1c24f.js" crossorigin="anonymous"></script>
<!-- External Scripts-->
</body>
</html>