-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
631 lines (586 loc) · 19.3 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
620
621
622
623
624
625
626
627
628
629
630
631
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Ashadul's Cuisine</title>
<!-- Link CSS-->
<link rel="stylesheet" href="./reset.css">
<link rel="stylesheet" href="./globalstyle.css">
<link rel="stylesheet" href="./components.css">
<link rel="stylesheet" href="home.css">
<!--AOS CSS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<!--start nav section-->
<div class="nav">
<div class="container">
<div class="nav_wrapper">
<a href="./index.html" class="logo">
<img src="./images/logo.svg" alt="Ashadul's Cuisine">
</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_wrapper">
<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 nav section-->
<!--Start Hero section-->
<section id="hero">
<div class="container">
<div class="hero__wrapper">
<div class="hero__left" data-aos="fade-left">
<div class="hero__left__wrapper">
<h1 class="hero__heading">The flavor of tradition</h1>
<p class="hero__info">We are a 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__right" data-aos="fade-right">
<div class="hero__img">
<img src="./images/heroImg.png" alt="food img">
</div>
</div>
</div>
</div>
</section>
<!--End Hero section-->
<!--Start 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">10AM - 7PM</h3>
<p class="storeInfo__text">Opening Hour</p>
</div>
<div class="storeInfo__item">
<div class="storeInfo__icon">
<img src="./images/address-icon.svg" alt="icon">
</div>
<h3 class="storeInfo__title">Fakir Bazar, Cumilla</h3>
<p class="storeInfo__text">Address</p>
</div>
<div class="storeInfo__item">
<div class="storeInfo__icon">
<img src="./images/phone-icon.svg" alt="icon">
</div>
<h3 class="storeInfo__title">+88012345</h3>
<p class="storeInfo__text">Call Now</p>
</div>
</div>
</div>
</section>
<!--End Store Info Section-->
<!--Start Our Specials Item Section-->
<section id="ourSpecials" data-aos="fade-up">
<div class="container">
<div class="ourSpecials__wrapper">
<div class="ourSpecials__left">
<div class="ourSpecials__item">
<div class="ourSpecials__item__img">
<img src="./images/food-3.png" alt="food img">
</div>
<h2 class="ourSpecials__item__title">Sweet Potato Fries Bowl</h2>
<h3 class="ourSpecials__item__price">$18</h3>
<div class="ourSpecials__item__stars">
<img src="./images/3star.png" alt="stars">
</div>
<p class="ourSpecials__item__text">
These Sweet Potato Fries bowl are a glorious, messy plate of goodness. Crispy 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>
<h2 class="ourSpecials__item__title">Sweet Potato Fries Bowl</h2>
<h3 class="ourSpecials__item__price">$18</h3>
<div class="ourSpecials__item__stars">
<img src="./images/3star.png" alt="stars">
</div>
<p class="ourSpecials__item__text">
These Sweet Potato Fries bowl are a glorious, messy plate of goodness. Crispy 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>
<div class="ourSpecials__right">
<h2 class="ourSpecials__title">Our Specials</h2>
<p class="ourSpecials__text">
All of our food is prepared daily at our restaurants to ensure the highest quality, freshest meals are delivered to our customers
</p>
<a href="./booking.html" class="btn primary-btn">Book Table</a>
</div>
</div>
</div>
</section>
<!--End Our Specials Item Section-->
<!--Start Top Dishes section-->
<section id="dishGrid" data-aos="fade-up">
<div class="container">
<h2 class="dishGrid__title">
Top Dishes
</h2>
<div class="dishGrid__wrapper">
<div class="dishGrid__item">
<div class="dishGrid__item__img">
<img src="./images/food-1.png" alt="food img">
</div>
<div class="dishGrid__item__info">
<h3 class="dishGrid__item__title">
Vegan Salad bowl
</h3>
<h3 class="dishGrid__item__price">$13</h3>
<div class="dishGrid__item__stars">
<img src="./images/3star.png" alt="star">
</div>
</div>
</div>
<div class="dishGrid__item">
<div class="dishGrid__item__img">
<img src="./images/food-2.png" alt="food img">
</div>
<div class="dishGrid__item__info">
<h3 class="dishGrid__item__title">
Vegan Salad bowl
</h3>
<h3 class="dishGrid__item__price">$13</h3>
<div class="dishGrid__item__stars">
<img src="./images/3star.png" alt="star">
</div>
</div>
</div>
<div class="dishGrid__item">
<div class="dishGrid__item__img">
<img src="./images/food-3.png" alt="food img">
</div>
<div class="dishGrid__item__info">
<h3 class="dishGrid__item__title">
Vegan Salad bowl
</h3>
<h3 class="dishGrid__item__price">$13</h3>
<div class="dishGrid__item__stars">
<img src="./images/3star.png" alt="star">
</div>
</div>
</div>
<div class="dishGrid__item">
<div class="dishGrid__item__img">
<img src="./images/food-6.png" alt="food img">
</div>
<div class="dishGrid__item__info">
<h3 class="dishGrid__item__title">
Vegan Salad bowl
</h3>
<h3 class="dishGrid__item__price">$13</h3>
<div class="dishGrid__item__stars">
<img src="./images/3star.png" alt="star">
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Top Dishes section-->
<!-- Start 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="oldPrice">$45</span>
<span class="newPrice">$35</span>
</h3>
<div class="discount__stars">
<img src="./images/3star.png" alt="stars">
</div>
<a href="./booking.html" class="btn primary-btn">Book Table</a>
</div>
</div>
</div>
</section>
<!-- End Discount Section -->
<!--Start Events Media section-->
<section id="eventsMedia" data-aos="fade-up">
<div class="container">
<div class="eventsMedia__wrapper">
<div class="eventsMedia__1">
<img src="./images/eventsMedia1.png" alt="events">
<a href="#" class="eventsMedia__playButton">
<img src="./images/playIcon.svg" alt="play Button">
</a>
</div>
<div class="eventsMedia__2">
<img src="./images/eventsMedia2.png" alt="events">
</div>
</div>
</div>
</section>
<!--End Events Media section-->
<!--Start Events Info section-->
<section id="eventsInfo" data-aos="fade-up">
<div class="container">
<div class="eventsInfo__wrapper">
<div class="eventsInfo__left">
<div class="eventsInfo__item">
<div class="eventsInfo__item__img">
<img src="./images/event-corporate.png" alt="events">
</div>
<div class="eventsInfo__item__info">
<h2 class="eventsInfo__item__text">Corporate Event</h2>
<p class="eventsInfo__item__text">Ashadul's Cuisine is the perfect venue for your corporate events. We specialze in private parties</p>
</div>
</div>
<div class="eventsInfo__item">
<div class="eventsInfo__item__img">
<img src="./images/event-weedings.png" alt="events">
</div>
<div class="eventsInfo__item__info">
<h2 class="eventsInfo__item__text">Wedding</h2>
<p class="eventsInfo__item__text">Ashadul's Cuisine offer an intimately unique wedding experience set in a spectacular setting that is sophisticated and comfortable</p>
</div>
</div>
</div>
<div class="eventsInfo__right">
<h2 class="eventsInfo__title">
Book For Events
</h2>
<p class="eventsInfo__text">
Book your private event or corporate function at Ashadul'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 Events Info section-->
<!--Start Why Us section-->
<section id="whyUs">
<div class="container">
<div class="whyUs__wrapper">
<div class="whyUs__left" data-aos="fade-right">
<h2 class="whyUs__title">Why Choose Our Food</h2>
<p class="whyUs__text">
Quality of Service, Food, Ambiance, and Value of Money are the primary elements for choosing a restaurant find-dinning restaurant in Cumilla cities with a captivating
perfect ambiance, and scrumptious food.
</p>
</div>
<div class="whyUs__right" data-aos="fade-left">
<div class="whyUs__item__wrapper">
<div class="whyUs__item">
<div class="whyUs__item__img">
<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__img">
<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__img">
<img src="./images/whyUs-icon3.svg" alt="Skilled chef">
</div>
<p class="whyUs__item__text">Skilled chef</p>
</div>
<div class="whyUs__item">
<div class="whyUs__item__img">
<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 Why Us section-->
<!--Start Testimonial section-->
<section id="testimonial" data-aos="fade-up">
<div class="container">
<div class="testimonial__wrapper">
<h2 class="testimonial__title">
What our customers say
</h2>
<div class="testimonial__item__wrapper">
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Ashadul">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Obidul</h3>
<div class="testimonial__item__stars">
<img src="./images/3star.png" alt="stars">
</div>
<p class="testimonial__item__text">
"visited Ashadul's Cuisine with friends last Sunday. Really lovely meal and very warm welcome - we would recommend this lovely restaurant and will try to go back again"
</p>
</div>
</div>
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Ashadul">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Obidul</h3>
<div class="testimonial__item__stars">
<img src="./images/3star.png" alt="stars">
</div>
<p class="testimonial__item__text">
"visited Ashadul's Cuisine with friends last Sunday. Really lovely meal and very warm welcome - we would recommend this lovely restaurant and will try to go back again"
</p>
</div>
</div>
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Ashadul">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Obidul</h3>
<div class="testimonial__item__stars">
<img src="./images/3star.png" alt="stars">
</div>
<p class="testimonial__item__text">
"visited Ashadul's Cuisine with friends last Sunday. Really lovely meal and very warm welcome - we would recommend this lovely restaurant and will try to go back again"
</p>
</div>
</div>
<div class="testimonial__item">
<div class="testimonial__item__img">
<img src="./images/testimonial_img1.png" alt="Ashadul">
</div>
<div class="testimonial__item__info">
<h3 class="testimonial__item__name">Obidul</h3>
<div class="testimonial__item__stars">
<img src="./images/3star.png" alt="stars">
</div>
<p class="testimonial__item__text">
"visited Ashadul's Cuisine with friends last Sunday. Really lovely meal and very warm welcome - we would recommend this lovely restaurant and will try to go back again"
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Testimonial section-->
<!--Start 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">Get notified with the latest news and recent offers from the "Ashadul's Cuisine"</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 Newsletter section-->
<!--Start footer section-->
<footer>
<div class="container">
<div class="footer__wrapper">
<div class="footer__col1">
<div class="footer__logo">
<img src="./images/logo.svg" alt="Ashadul 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>
<ol>
<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>
</ol>
</div>
</div>
<div class="footer__col2">
<h3 class="footer__text__title">Links</h3>
<ol 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</a>
</li>
<li>
<a href="#">Privacy & Policy</a>
</li>
</ol>
</div>
<div class="footer__col3">
<h3 class="footer__text__title">Support</h3>
<ol class="footer__text">
<li>
<a href="./contact.html">Contact</a>
</li>
<li>
<a href="#">Support Center</a>
</li>
<li>
<a href="#">Feedback</a>
</li>
</ol>
</div>
<div class="footer__col4">
<h3 class="footer__text__title">Contact</h3>
<ol class="footer__text">
<li>
<a href="tel:+88012345">+88012345</a>
</li>
<li>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<a href="#">Fakir Bazar, Cumilla, Bangladesh</a>
</li>
</ol>
</div>
</div>
</div>
</footer>
<div id="copyright">
<div class="container">
<p class="copyright__text">
© copyright 2022 Ashadul Cuisine | All rights reserved
</p>
</div>
</div>
<!--End footer section-->
<!-- AOS Script-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<!--Main JS script-->
<script src="./main.js"></script>
</body>
</html>