-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
619 lines (602 loc) · 19.8 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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Shaif`s cuisine</title>
<!-- aos -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/components.css">
<link rel="stylesheet" href="./css/home.css">
</head>
<body>
<!-- Nav section -->
<div class="nav">
<div class="container">
<div class="nav__wrapper">
<a href="./index.html" class="logo">
<img src="./images/logo.svg" alt="">
</a>
<nav>
<div class="nav__icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<line x1="3" y1="12" x2="21" y2="12" />
<line x1="3" y1="6" x2="21" y2="6" />
<line x1="3" y1="18" x2="21" y2="18" />
</svg>
</div>
<div class="nav__bgOverlay "></div>
<ul class="nav__list ">
<div class="nav__close ">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round">
<line x1="18" y1="6" x2="6" y2="18" />
<line x1="6" y1="6" x2="18" y2="18" />
</svg>
</div>
<div class="nav__list_wraper">
<li>
<a href="./index.html" class="nav__link">Home</a>
</li>
<li>
<a href="./menu.html" class="nav__link">Menu</a>
</li>
<li>
<a href="./about.html" class="nav__link">About</a>
</li>
<li>
<a href="./contact.html" class="nav__link">Contact</a>
</li>
<li> <a href="./booking.html" class="btn primary-btn"> Book Table</a></li>
</div>
</ul>
</nav>
</div>
</div>
</div>
<!-- End of Nav section -->
<!-- Hero Section -->
<section id="hero">
<div class="container">
<div class="hero__wrapper">
<div class="hero__textCol" data-aos="fade-left">
<div class="hero__textWrapper">
<h1 class="hero__heading">The flavor of tradition</h1>
<p class="hero__info">We are multi cuisine restaurant offering a wide variety of food experience in both casual and fine dining environment.</p>
<div class="button__wrapper">
<a href="#" class="btn primary-btn">Explore menu</a>
<a href="#" class="btn">Book table</a>
</div>
</div>
</div>
<div class="hero__imgCol" data-aos="fade-right">
<div class="hero__imgWrapper">
<img src="./images/heroImg.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- End of Hero Section -->
<!-- Store Info Section -->
<section id="storeInfo" data-aos="fade-up">
<div class="container">
<div class="storeInfo__wrapper">
<div class="storeInfo__item">
<div class="storeInfo__icon">
<img src="./images/wall-clock-icon.svg" alt="icon">
</div>
<h3 class="storeInfo__title">
10 AM - 7 PM
</h3>
<div class="storeInfo__text">
Opening Hour
</div>
</div>
<div class="storeInfo__item">
<div class="storeInfo__icon">
<img src="./images/address-icon.svg" alt="icon">
</div>
<h3 class="storeInfo__title">
GEC, Chittagong
</h3>
<div class="storeInfo__text">
Address
</div>
</div>
<div class="storeInfo__item">
<div class="storeInfo__icon">
<img src="./images/phone-icon.svg" alt="icon">
</div>
<h3 class="storeInfo__title">
+880199
</h3>
<div class="storeInfo__text">
Call Now
</div>
</div>
</div>
</div>
</section>
<!-- End of Store Info Section -->
<!-- Our Specials Section -->
<section id="ourSpecials" data-aos="fade-up">
<div class="container">
<div class="ourSpecials__wrapper">
<div class="ourSpecials__cards">
<div class="ourSpecials__item">
<div class="ourSpecials__item__img">
<img src="./images/food-3.png" alt="food img">
</div>
<h3 class="ourSpecials__item__title">Sweet Potato Fries Bowl</h3>
<h2 class="ourSpecials__item__price">$18</h2>
<div class="ourSpecials__item__rate">
<img src="./images/3star.png" alt="3 stars">
</div>
<p class="ourSpecials__item__description">
This Sweet Potato Fries bowl is a glorious, messy plate of Goodness. Cripsy sweet potato fries loaded with lots of fresh summer vegetables and a lime ranch. By adding a seasoning blend with chipotle powder, garlic and onion, these spicy sweet potato fries are full of flavor.
</p>
</div>
<div class="ourSpecials__item">
<div class="ourSpecials__item__img">
<img src="./images/food-3.png" alt="food img">
</div>
<h3 class="ourSpecials__item__title">Sweet Potato Fries Bowl</h3>
<h2 class="ourSpecials__item__price">$18</h2>
<div class="ourSpecials__item__rate">
<img src="./images/3star.png" alt="3 stars">
</div>
<p class="ourSpecials__item__description">
This Sweet Potato Fries bowl is a glorious, messy plate of Goodness. Cripsy sweet potato fries loaded with lots of fresh summer vegetables and a lime ranch. By adding a seasoning blend with chipotle powder, garlic and onion, these spicy sweet potato fries are full of flavor.
</p>
</div>
<!-- <div class="ourSpecials__item">
<div class="ourSpecials__item__img">
<img src="./images/food-1.png" alt="food img">
</div>
<h3 class="ourSpecials__item__title">Vegan Salad Bowl</h3>
<h2 class="ourSpecials__item__price">$18</h2>
<div class="ourSpecials__item__rate">
<img src="./images/3star.png" alt="3 stars">
</div>
<p class="ourSpecials__item__description">
Vegan salad bowl is immensely satisfying with any combination of whole grains, pulses, noodles, raw or cooked fruits and veggiesall topped off with a delicious sauce or dressing - each bite is an explosion of flavors and textures.
</p>
</div> -->
</div>
<div class="ourSpecials__description">
<h2 class="ourSpecials__title">Our Specials</h2>
<p class="ourSpecials__text">
All of ous foos is prepared daily in our restaurants to ensure the highest quality, freshest meals are delivered to our customers.
</p>
<a href="" class="btn primary-btn">Book Table</a>
</div>
</div>
</div>
</section>
<!-- End of Our Specials Section -->
<!-- Top Dishes Section -->
<section id="topDish" data-aos="fade-up">
<div class="container">
<h2 class="topDish__title">
Top Dishes
</h2>
<div class="topDish__wrapper">
<div class="topDish__item">
<div class="topDish__item__img">
<img src="./images/food-1.png" alt="">
</div>
<div class="topDish__item__info">
<h3 class="topDish__item__title">
Vegan Salad Bowl
</h3>
<h3 class="topDish__item__price">$13</h3>
<div class="topDish__item__rate">
<img src="./images/3star.png" alt="">
</div>
</div>
</div>
<div class="topDish__item">
<div class="topDish__item__img">
<img src="./images/food-1.png" alt="">
</div>
<div class="topDish__item__info">
<h3 class="topDish__item__title">
Vegan Salad Bowl
</h3>
<h3 class="topDish__item__price">$13</h3>
<div class="topDish__item__rate">
<img src="./images/3star.png" alt="">
</div>
</div>
</div>
<div class="topDish__item">
<div class="topDish__item__img">
<img src="./images/food-1.png" alt="">
</div>
<div class="topDish__item__info">
<h3 class="topDish__item__title">
Vegan Salad Bowl
</h3>
<h3 class="topDish__item__price">$13</h3>
<div class="topDish__item__rate">
<img src="./images/3star.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Top Dishes Section -->
<!-- Discount Section -->
<section id="discount" data-aos="fade-up">
<div class="container">
<div class="discount__wrapper">
<div class="discount__images">
<div class="discount__img1">
<img src="./images/food-5.png" alt="food img">
</div>
<div class="discount__img2">
<img src="./images/food-4.png" alt="food img">
</div>
<div class="discount__img3">
<img src="./images/food-3.png" alt="food img">
</div>
</div>
<div class="discount__info">
<h3 class="discount__text">20% OFF</h3>
<h3 class="discount__title">Demo dish for discount</h3>
<h3 class="discount__price">
<span class="discount__oldPrice">$45</span>
<span class="discount__newPrice">$36</span>
</h3>
<div class="discount__rate">
<img src="./images/3star.png" alt="">
</div>
<a href="./booking.html" class="btn primary-btn">Book Table</a>
</div>
</div>
</div>
</section>
<!-- End of Discount Section -->
<!-- Events Media section -->
<section id="eventsMedia" data-aos="fade-up">
<div class="container">
<div class="eventsMedia__wrapper">
<div class="eventsMedia__video">
<img src="./images/eventsMedia1.png" alt="events">
<a href="#" class="eventsMedia__video__playbutton">
<img src="./images/playIcon.svg" alt="play">
</a>
</div>
<div class="eventsMedia__photo">
<img src="./images/eventsMedia2.png" alt="events">
</div>
</div>
</div>
</section>
<!-- End of Events Media section -->
<!-- Events Info section -->
<section id="eventsInfo" data-aos="fade-up">
<div class="container">
<div class="eventsInfo__wrapper">
<div class="eventsInfo__cards">
<div class="eventsInfo__item">
<div class="eventsInfo__item__img">
<img src="./images/event-corporate.png" alt="event">
</div>
<div class="eventsInfo__item__info">
<h2 class="eventsInfo__item__title">Corporate Events</h2>
<p class="eventsInfo__item__text">
Shaif`s Cuisine is the perfect venue for your corporate events. We specialise in private parties.
</p>
</div>
</div>
<div class="eventsInfo__item">
<div class="eventsInfo__item__img">
<img src="./images/event-weddings.png" alt="event">
</div>
<div class="eventsInfo__item__info">
<h2 class="eventsInfo__item__title">Weddings</h2>
<p class="eventsInfo__item__text">
Shaif`s Cuisine offers an intimately unique wedding experience set in spectacular setting that is sophisticated and comfortable.
</p>
</div>
</div>
</div>
<div class="eventsInfo__content">
<h2 class="eventsInfo__title">Book For Events</h2>
<p class="eventsInfo__text">
Book your private event of corporate function at Shaif`s cuisine to experience a truly unique experience.
</p>
<a href="./contact.html" class="btn primary-btn">Contact Now</a>
</div>
</div>
</div>
</section>
<!--End of Events Info section -->
<!-- Why Us section -->
<section id="whyUs">
<div class="container">
<div class="whyUs__wrapper">
<div class="whyUs__description" data-aos="fade-right">
<h2 class="whyUs__title">Why choose out food</h2>
<p class="whyUs__text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus tenetur porro illo alias voluptate beatae iure nihil consequatur laboriosam magnam, voluptates laborum tempora quisquam quasi iste quis. Est ut, quo.
</p>
</div>
<div class="whyUs__cards" data-aos="fade-left">
<div class="whyUs__items__wrapper">
<div class="whyUs__item">
<div class="whyUs__item__icon">
<img src="./images/whyUs-icon1.svg" alt="Quality Food">
</div>
<p class="whyUs__item__text">Quality Food</p>
</div>
<div class="whyUs__item">
<div class="whyUs__item__icon">
<img src="./images/whyUs-icon2.svg" alt="Classical taste">
</div>
<p class="whyUs__item__text">Classical taste</p>
</div>
<div class="whyUs__item">
<div class="whyUs__item__icon">
<img src="./images/whyUs-icon3.svg" alt="Skilled chief">
</div>
<p class="whyUs__item__text">Skilled chief</p>
</div>
<div class="whyUs__item">
<div class="whyUs__item__icon">
<img src="./images/whyUs-icon4.svg" alt="Best service">
</div>
<p class="whyUs__item__text">Best service</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Why Us section -->
<!-- Testimonial Section -->
<section id="testimonial" data-aos="fade-up">
<div class="container">
<div class="testimonial__wrapper">
<h2 class="testimonial__title">What Our Castomers Say</h2>
<div class="testimonial__items__wrapper">
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Nora West">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Nora West</h3>
<div class="testimonial__item__rate">
<img src="./images/3star.png" alt="rate">
</div>
<p class="testimonial__item__text">
Lorem ipsum dolor sit amet consectetur, adipisicing, elit. Iusto deserunt quaerat obcaecati, aliquid! Tempora, rerum porro amet eligendi. Facilis voluptatem, provident at quasi! Atque, recusandae animi suscipit labore asperiores, a?
</p>
</div>
</div>
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Nora West">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Nora West</h3>
<div class="testimonial__item__rate">
<img src="./images/3star.png" alt="rate">
</div>
<p class="testimonial__item__text">
Lorem ipsum, dolor sit amet consectetur, adipisicing elit. Quod dicta voluptatum voluptates ipsam et culpa soluta illo placeat? Vel pariatur, esse iusto incidunt harum! Recusandae id, iste aperiam doloremque praesentium.
</p>
</div>
</div>
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Nora West">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Nora West</h3>
<div class="testimonial__item__rate">
<img src="./images/3star.png" alt="rate">
</div>
<p class="testimonial__item__text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Aspernatur ullam id vero doloribus fugiat porro deserunt, illo sequi laborum doloremque? Quis non reiciendis aspernatur consequuntur recusandae cupiditate, explicabo doloribus dolore.
</p>
</div>
</div>
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Nora West">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Nora West</h3>
<div class="testimonial__item__rate">
<img src="./images/3star.png" alt="rate">
</div>
<p class="testimonial__item__text">
Lorem ipsum dolor, sit amet consectetur adipisicing, elit. Dolores unde, repellat modi deleniti, incidunt quisquam debitis illo quasi! Cum voluptatibus praesentium reiciendis unde, obcaecati optio? Quas, nam? Minus necessitatibus, aliquid.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Testimonial Section -->
<!-- NewsLetter Section -->
<section id="newsletter" data-aos="fade-up">
<div class="container">
<div class="newsletter__wrapper">
<div class="newsletter__info">
<h3 class="newsletter__title">Join Newsletter</h3>
<p class="newsletter__text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit impedit beatae molestias dicta aut minus vero sit, possimus, nemo neque.</p>
</div>
<div class="newsletter__form">
<form>
<label for="email">
<input type="email" placeholder="Your Email Address">
</label>
<button type="submit">Join</button>
</form>
</div>
</div>
</div>
</section>
<!--End of NewsLetter Section -->
<!-- Footer -->
<footer>
<div class="container">
<div class="footer__wrapper">
<div class="footer__info">
<div class="footer__logo">
<img src="./images/logo.svg" alt="Shaif`s cuisine">
</div>
<p class="footer__desc">
Fresh and delicious traditional Bangladeshi food to delight the whole family.
</p>
<div class="footer__socials">
<h4 class="footer__socials__title">Follow us</h4>
<ul>
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round">
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" />
</svg>
</a>
</li>
<li>
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="2" width="20" height="20" rx="5" ry="5" />
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" />
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5" />
</svg>
</a>
</li>
<li>
<a href="">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z" />
</svg>
</a>
</li>
</ul>
</div>
</div>
<div class="footer__links">
<h3 class="footer__text__title">Links</h4>
<ul class="footer__text">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./menu.html">Menu</a>
</li>
<li>
<a href="./booking.html">Book Table</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
<li>
<a href="./contact.html">Contact Us</a>
</li>
<li>
<a href="#">Privacy & Policy</a>
</li>
</ul>
</div>
<div class="footer__support">
<h3 class="footer__text__title">Support</h3>
<ul class="footer__text">
<li>
<a href="./contact.html">Contact</a>
</li>
<li>
<a href="#">Support Center</a>
</li>
<li>
<a href="#">Feedback</a>
</li>
</ul>
</div>
<div class="footer__contact">
<h3 class="footer__text__title">Contact</h3>
<ul class="footer__text">
<li>
<a href="tel:+880199">+880199</a>
</li>
<li>
<a href="malito:shaifcuis@gmail.com">shaifcuis@gmail.com</a>
</li>
<li>
<a href="#">Gec Circle, Chittagong, Bangladesh</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- End of footer -->
<div id="copyright">
<div class="container">
<p class="copyright__text">
© copyright 2022 Shaif`s Cuisine | All rights reserved
</p>
</div>
</div>
<!-- aos script-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<!-- custom script -->
<script src="./main.js"></script>
</body>
</html>