-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1236 lines (1070 loc) · 56.4 KB
/
Copy pathindex.html
File metadata and controls
1236 lines (1070 loc) · 56.4 KB
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Order fresh, healthy and mouth-watering home food: I am a foodie!</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="57x57" href="assets/img-chef/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/img-chef/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img-chef/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img-chef/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img-chef/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img-chef/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/img-chef/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img-chef/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img-chef/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img-chef/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img-chef/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img-chef/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img-chef/favicons/favicon-16x16.png">
<link rel="manifest" href="assets/img-chef/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="assets/img-chef/favicons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,600,600i,700,700i|Satisfy|Comic+Neue:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Delicious - v2.1.0
* Template URL: https://bootstrapmade.com/delicious-free-restaurant-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Top Bar ======= -->
<section id="topbar" class="d-none d-lg-flex align-items-center fixed-top topbar-transparent">
<div class="container text-right">
<i class="icofont-phone"></i> 9953702758 (Clover Village)
<i class="icofont-clock-time icofont-rotate-180"></i> Order 1 day earlier
</div>
</section>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<h1 class="text-light"><a href="index.html"><span>I am a foodie</span></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<!-- <li><a href="#about">About</a></li> -->
<li><a href="#menu">Menu</a></li>
<!-- <li><a href="#specials">Specials</a></li> -->
<!-- <li><a href="#events">Events</a></li> -->
<li><a href="#chefs">The Chef</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
<li class="book-a-table text-center">
<a href="https://wa.me/919953702758?text=Hi%20Simarpreet.%20I%20wanted%20to%20order%20food!">Whatsapp Us</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<div id="heroCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators" id="hero-carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<!-- Slide 1 -->
<div class="carousel-item active" style="background: url(assets/img-chef/rice-unsplash.jpg);">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown"><span>Chef</span> Simarpreet</h2>
<p class="animate__animated animate__fadeInUp">Fresh, high-quality ingredients, made-to-order, super delicious - Indian, Chinese, Continental cuisines made by Simarpreet at home (Clover Village). Order a meal for 2-4 people or for group gatherings & home parties. We deliver for free within Wanowrie area. For further distances - a reasonable delivery charge will be applied.</p>
<div>
<a href="#menu" class="btn-menu animate__animated animate__fadeInUp scrollto">Our Menu</a>
<a href="https://wa.me/919953702758?text=Hi%20Simarpreet.%20I%20wanted%20to%20order%20food!" class="btn-book animate__animated animate__fadeInUp scrollto">Whatsapp Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="carousel-item" style="background: url(assets/img-chef/biryani-nik-sharma.jpg);">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Biryani</h2>
<p class="animate__animated animate__fadeInUp">Try our unique Chicken or Veg Biryani - loaded with taste and flavour. </p>
<div>
<a href="#menu" class="btn-menu animate__animated animate__fadeInUp scrollto">Our Menu</a>
<a href="https://wa.me/919953702758?text=Hi%20Simarpreet.%20I%20wanted%20to%20order%20food!" class="btn-book animate__animated animate__fadeInUp scrollto">Whatsapp Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="carousel-item" style="background: url(assets/img-chef/indian_recipes_mobile_app.png);">
<div class="carousel-background"><img src="assets/img-chef/indian_recipes_mobile_app.png" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Indian Recipes (Mobile App)</h2>
<p class="animate__animated animate__fadeInUp">Over 100+ free Punjabi/Indian home recipes in this mobile app. Download it now! </p>
<div>
<a href="#menu" class="btn-menu animate__animated animate__fadeInUp scrollto">Our Menu</a>
<a href="https://indian-recipes.glideapp.io/" class="btn-book animate__animated animate__fadeInUp scrollto">Download App</a>
</div>
</div>
</div>
</div>
<!-- Slide 4 -->
<div class="carousel-item" style="background: url(assets/img-chef/Chips_and_Dip.jpg);">
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Veg & Non-Veg Snacks (Air fryer)</h2>
<p class="animate__animated animate__fadeInUp"> Air-fried tandoori chicken, paneer or cutlets -- maximum taste, maximum health</p>
<div>
<a href="#menu" class="btn-menu animate__animated animate__fadeInUp scrollto">Our Menu</a>
<a href="https://wa.me/919953702758?text=Hi%20Simarpreet.%20I%20wanted%20to%20order%20food!" class="btn-book animate__animated animate__fadeInUp scrollto">Whatsapp Us</a>
</div>
</div>
</div>
</div>
<!-- Slide 5 -->
<div class="carousel-item" style="background: url(assets/img-chef/kheer-slide.jpg);">
<div class="carousel-background"><img src="assets/img-chef/kheer-slide.jpg" alt=""></div>
<div class="carousel-container">
<div class="carousel-content">
<h2 class="animate__animated animate__fadeInDown">Heavenly Date Kheer</h2>
<p class="animate__animated animate__fadeInUp">Try our super popular kheer made with dates, rice and milk --- especially after a spicy meal and watch a big smile appear on your face! </p>
<div>
<a href="#menu" class="btn-menu animate__animated animate__fadeInUp scrollto">Our Menu</a>
<a href="https://wa.me/919953702758?text=Hi%20Simarpreet.%20I%20wanted%20to%20order%20food!" class="btn-book animate__animated animate__fadeInUp scrollto">Whatsapp Us</a>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#heroCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon icofont-simple-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#heroCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon icofont-simple-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<!-- <section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-lg-5 align-items-stretch video-box" style='background-image: url("assets/img/about.jpg");'>
<a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch">
<div class="content">
<h3>Eum ipsam laborum deleniti <strong>velit pariatur architecto aut nihil</strong></h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit
</p>
<p class="font-italic">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.
</p>
<ul>
<li><i class="bx bx-check-double"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="bx bx-check-double"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="bx bx-check-double"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate trideta storacalaperda mastiro dolore eu fugiat nulla pariatur.</li>
</ul>
<p>
Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum
</p>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End About Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container">
<div class="section-title">
<h2>Just place your order & <span>take a heavenly break!</span></h2>
<p>Satisfy your need for flavorful, safe, nutrious & yummy food -- reasonably priced, home-cooked with love. Take a break!</p>
</div>
<div class="row">
<div class="col-lg-4">
<div class="box">
<span>01</span>
<h4>Fresh & Hygenic !</h4>
<p>All food is cooked to order, fresh, hygenic and with love.</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box">
<span>02</span>
<h4>Yummy!</h4>
<p>Each dish has been crafted to tickle your tongue and make you feel satisfied!</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0">
<div class="box">
<span>03</span>
<h4> High Quality Ingredients!</h4>
<p>We cook all our food in high quality ingredients, freshly sourced. We know, if the ingredients are high quality, the food will taste and feel amazing!</p>
</div>
</div>
</div>
</div>
</section><!-- End Whu Us Section -->
<!-- ======= Menu Section ======= -->
<section id="menu" class="menu">
<div class="container">
<div class="section-title">
<h2>Our tasty home-made <span>Menu</span></h2>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="menu-flters">
<li data-filter="*" class="filter-active">Show All</li>
<li data-filter=".filter-starters">Starters</li>
<li data-filter=".filter-specialty">Indian</li>
<li data-filter=".filter-chinese">Chinese</li>
<li data-filter=".filter-soup">Soups</li>
</ul>
</div>
</div>
<div class="row menu-container">
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Chicken Biryani </a><span>Rs 310</span>
</div>
<div class="menu-ingredients">
Savor the great taste of Chef Simarpreets' Chicken Biryani. At the heart of
this delicacy is tender cut of fresh, juicy and luscious chicken that
simply melts in your mouth.
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Veg Biryani (Hyderabadi Style)</a><span>Rs 270</span>
</div>
<div class="menu-ingredients">
Vegetable biryani is an aromatic rice dish made by cooking basmati rice with mix veggies, herbs
& biryani spices.
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Mutter Paneer (Special)</a><span>Rs 270</span>
</div>
<div class="menu-ingredients">
Spicy mutter paneer with a tinge of honey. Must try!
</div>
</div>
<div class="col-lg-6 menu-item filter-soup">
<div class="menu-content">
<a href="#">Simple Spinach Soup</a><span>Rs 180</span>
</div>
<div class="menu-ingredients">
A simple spinach soup is a vibrant, nutrient-packed, and comforting dish
that is a creamy and subtly seasoned with onion.
</div>
</div>
<div class="col-lg-6 menu-item filter-soup">
<div class="menu-content">
<a href="#">Carrot and Tomato Soup</a><span>Rs 180</span>
</div>
<div class="menu-ingredients">
The perfect balance of sweet carrots and tangy tomatoes in a creamy, healthy blend.
</div>
</div>
<div class="col-lg-6 menu-item filter-soup">
<div class="menu-content">
<a href="#">Crème of Sweet Pea</a><span>Rs 180</span>
</div>
<div class="menu-ingredients">
A velvety smooth, vibrant purée that celebrates the fresh, natural sweetness of peas.
Gently simmered with delicate onions and finished with a rich swirl of fresh cream and a hint of mint.
Served warm, this elegant soup is a light yet satisfying start to any meal.
</div>
</div>
<div class="col-lg-6 menu-item filter-soup">
<div class="menu-content">
<a href="#">Sweet Corn Soup</a><span>Rs 180</span>
</div>
<div class="menu-ingredients">
A warm, comforting, and fiber-rich Indo-Chinese soup featuring tender sweet corn kernels and finely chopped vegetables like carrots and French beans.
The soup is lightly seasoned with delicate spices, often thickened with a corn slurry, and finished with a garnish of fresh spring onions.
</div>
</div>
<div class="col-lg-6 menu-item filter-soup">
<div class="menu-content">
<a href="#">Broccoli Soup</a><span>Rs 200</span>
</div>
<div class="menu-ingredients">
A smooth, rich, and velvety soup featuring fresh broccoli pureed with a blend of sautéed onions, garlic, and a hint of nutmeg.
Finished with a touch of fresh cream for a truly comforting bowl.
</div>
</div>
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Tandoori Chicken Drumsticks (5 pieces)</a><span>Rs 370</span>
</div>
<div class="menu-ingredients">
Tandoori Chicken made in the Air Fryer, a flavor packed spicy dish. Chicken is marinated in yogurt, ginger, garlic, spices, lemon juice and grilled in the Air fryer.
</div>
</div>
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Paneer Tikka</a><span>Rs 210</span>
</div>
<div class="menu-ingredients">
Air Fried Paneer Tikka is a spiced, marinated cottage cheese which is a flavor packed treat, you’ll love as a snack or for any get-togethers. A delicious vegetarian appetizer.
</div>
</div>
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Potato Wedges</a><span>Rs 200</span>
</div>
<div class="menu-ingredients">
Perfectly crisp and seasoned potato wedges straight out of our Air fryer.
</div>
</div>
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Chips and Dip</a><span>Rs 100</span>
</div>
<div class="menu-ingredients">
Curd dip is served along with potatoes chips (wafers). This is a perfect party Dip recipe with a distinct flavour of lemon, spring onions, capsicum and the creaminess of hung curd. We will also give you a packet of chips with the dip.
</div>
</div>
<div class="col-lg-6 menu-item filter-chinese">
<div class="menu-content">
<a href="#">Hakka Noodles (Chicken)</a><span>Rs 320</span>
</div>
<div class="menu-ingredients">
All time favorite hakka noodles are flavorful, tossed with vegetables. It is one of the best options to treat your taste buds and a perfect one time meal.
</div>
</div>
<div class="col-lg-6 menu-item filter-chinese">
<div class="menu-content">
<a href="#">Hakka Noodles (Veg)</a><span>Rs 270</span>
</div>
<div class="menu-ingredients">
All time favorite hakka noodles are flavorful, tossed with vegetables. It is one of the best options to treat your taste buds and a perfect one time meal.
</div>
</div>
<div class="col-lg-6 menu-item filter-chinese">
<div class="menu-content">
<a href="#">Fried Rice (Chicken)</a><span>Rs 320</span>
</div>
<div class="menu-ingredients">
It is a flavored rice recipe made with cooked rice, finely chopped veggies and asian-style seasoning.
</div>
</div>
<div class="col-lg-6 menu-item filter-chinese">
<div class="menu-content">
<a href="#">Fried Rice (Veg)</a><span>Rs 270</span>
</div>
<div class="menu-ingredients">
It is a flavored rice recipe made with cooked rice, finely chopped veggies and asian-style seasoning.
</div>
</div>
<div class="col-lg-6 menu-item filter-chinese">
<div class="menu-content">
<a href="#">Chilly Chicken (Dry/Gravy)</a><span>Rs 320</span>
</div>
<div class="menu-ingredients">
Chilly chicken is a sweet, spicy & slightly sour crispy dish made with boneless chicken, bell peppers, ginger, chilly & soya sauce. This crisp-fried saucy chilly chicken dish is hands down one of the most lip-smacking dishes you can order.
</div>
</div>
<div class="col-lg-6 menu-item filter-chinese">
<div class="menu-content">
<a href="#">Chilly Paneer (Dry/Gravy)</a><span>Rs 210</span>
</div>
<div class="menu-ingredients">
Chilly Paneer is a sweet, spicy & slightly sour crispy dish made with cottage cheese, bell peppers, ginger, chilly & soya sauce. A perfect dish for the spicy vegetarian mood.
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Kheer (Dates) </a><span>Rs 350</span>
</div>
<div class="menu-ingredients">
Dates kheer is a thick, creamy and delicious nutty flavored rice dessert with goodness of natural sweet plum dates. Weight: 500 gms.
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Gajar Ka Halwa </a><span>Rs 350</span>
</div>
<div class="menu-ingredients">
A slow cooked traditional Indian halwa made by simmering fresh carrots in milk and sugar. A special dish for the winter season! Weight: 500 gms.
</div>
</div>
</div>
</section><!-- End Menu Section -->
<!-- ======= Specials Section ======= -->
<!-- <section id="specials" class="specials">
<div class="container">
<div class="section-title">
<h2>Check our <span>Specials</span></h2>
<p>Ut possimus qui ut temporibus culpa velit eveniet modi omnis est adipisci expedita at voluptas atque vitae autem.</p>
</div>
<div class="row">
<div class="col-lg-3">
<ul class="nav nav-tabs flex-column">
<li class="nav-item">
<a class="nav-link active show" data-toggle="tab" href="#tab-1">Modi sit est</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-2">Unde praesentium sed</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-3">Pariatur explicabo vel</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-4">Nostrum qui quasi</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tab-5">Iusto ut expedita aut</a>
</li>
</ul>
</div>
<div class="col-lg-9 mt-4 mt-lg-0">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Architecto ut aperiam autem id</h3>
<p class="font-italic">Qui laudantium consequatur laborum sit qui ad sapiente dila parde sonata raqer a videna mareta paulona marka</p>
<p>Et nobis maiores eius. Voluptatibus ut enim blanditiis atque harum sint. Laborum eos ipsum ipsa odit magni. Incidunt hic ut molestiae aut qui. Est repellat minima eveniet eius et quis magni nihil. Consequatur dolorem quaerat quos qui similique accusamus nostrum rem vero</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/specials-1.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-2">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Et blanditiis nemo veritatis excepturi</h3>
<p class="font-italic">Qui laudantium consequatur laborum sit qui ad sapiente dila parde sonata raqer a videna mareta paulona marka</p>
<p>Ea ipsum voluptatem consequatur quis est. Illum error ullam omnis quia et reiciendis sunt sunt est. Non aliquid repellendus itaque accusamus eius et velit ipsa voluptates. Optio nesciunt eaque beatae accusamus lerode pakto madirna desera vafle de nideran pal</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/specials-2.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-3">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Impedit facilis occaecati odio neque aperiam sit</h3>
<p class="font-italic">Eos voluptatibus quo. Odio similique illum id quidem non enim fuga. Qui natus non sunt dicta dolor et. In asperiores velit quaerat perferendis aut</p>
<p>Iure officiis odit rerum. Harum sequi eum illum corrupti culpa veritatis quisquam. Neque necessitatibus illo rerum eum ut. Commodi ipsam minima molestiae sed laboriosam a iste odio. Earum odit nesciunt fugiat sit ullam. Soluta et harum voluptatem optio quae</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/specials-3.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-4">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Fuga dolores inventore laboriosam ut est accusamus laboriosam dolore</h3>
<p class="font-italic">Totam aperiam accusamus. Repellat consequuntur iure voluptas iure porro quis delectus</p>
<p>Eaque consequuntur consequuntur libero expedita in voluptas. Nostrum ipsam necessitatibus aliquam fugiat debitis quis velit. Eum ex maxime error in consequatur corporis atque. Eligendi asperiores sed qui veritatis aperiam quia a laborum inventore</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/specials-4.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-5">
<div class="row">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Est eveniet ipsam sindera pad rone matrelat sando reda</h3>
<p class="font-italic">Omnis blanditiis saepe eos autem qui sunt debitis porro quia.</p>
<p>Exercitationem nostrum omnis. Ut reiciendis repudiandae minus. Omnis recusandae ut non quam ut quod eius qui. Ipsum quia odit vero atque qui quibusdam amet. Occaecati sed est sint aut vitae molestiae voluptate vel</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/specials-5.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!-- End Specials Section -->
<!-- ======= Events Section ======= -->
<section id="events" class="events">
<div class="container">
<div class="section-title">
<h2>These dishes are a <span>must try</span> </h2>
</div>
<div class="owl-carousel events-carousel">
<div class="row event-item">
<div class="col-lg-6">
<img src="assets/img-chef/biryani raita.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Biryani</h3>
<div class="price">
<p><span>Veg & Non-Veg</span></p>
</div>
<p class="font-italic">
Mouth watering biryani - veg and non-veg. A speciality recipe!
</p>
<ul>
<li><i class="icofont-check-circled"></i> Flavourful</li>
<li><i class="icofont-check-circled"></i> Veg & Chicken options</li>
<li><i class="icofont-check-circled"></i> Salaan or raita as accompaniment included</li>
<li><i class="icofont-check-circled"></i> Spice levels can be adjusted on request</li>
</ul>
<p>
Order for a family occasion, a cricket match, a weekend evening binge, or to just take a break and satisfy your taste-buds!
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="assets/img-chef/hakka noodles.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Hakka Noodles</h3>
<div class="price">
<p><span>Veg & Non-Veg</span></p>
</div>
<p class="font-italic">
In the mood for some chinese?
</p>
<ul>
<li><i class="icofont-check-circled"></i> Flavourful & loaded with veggies</li>
<li><i class="icofont-check-circled"></i> Chicken option available</li>
<li><i class="icofont-check-circled"></i> Goes best with Chilly Chicken or Paneer</li>
<li><i class="icofont-check-circled"></i> Spice levels can be adjusted on request</li>
</ul>
<p>
Order for an evening party and pair it with Chilly-Chicken or Chilly-Paneer. Keep a coke or a drink-on-the-rocks handy!
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="assets/img-chef/kheer_closeup.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Dates ki Kheer</h3>
<div class="price">
<p><span>Sweet dish</span></p>
</div>
<p class="font-italic">
Want a sweet dish that has the goodness of fresh dates, and isn't too sweet?
</p>
<ul>
<li><i class="icofont-check-circled"></i> Made with real dates</li>
<li><i class="icofont-check-circled"></i> Dry-fruits</li>
<li><i class="icofont-check-circled"></i> Nutty flavor</li>
<li><i class="icofont-check-circled"></i> Best served cold</li>
</ul>
<p>
Chef Simarpreet's Kheer is one of the most ordered dish on the menu. Must try!
</p>
</div>
</div>
<div class="row event-item">
<div class="col-lg-6">
<img src="assets/img-chef/mutter_paneer.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content">
<h3>Mutter Paneer</h3>
<div class="price">
<p><span>Special</span></p>
</div>
<p class="font-italic">
Mutter panner with a spicy and sweet twist!
</p>
<ul>
<li><i class="icofont-check-circled"></i> Made with fresh paneer</li>
<li><i class="icofont-check-circled"></i> Spicy</li>
<li><i class="icofont-check-circled"></i> Honey flavor</li>
<li><i class="icofont-check-circled"></i> Best served with Rice/Roti</li>
</ul>
<p>
For those who love paneer!
</p>
</div>
</div>
</div>
</div>
</section><!-- End Events Section -->
<!-- ======= Chefs Section ======= -->
<section id="chefs" class="chefs">
<div class="container">
<div class="section-title">
<h2>The <span>Chef</span></h2>
<p>The food is made with love by the chef!</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="member">
<div class="pic"><img src="assets/img-chef/Logo-new.png" class="img-fluid" alt=""></div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member">
<div class="pic"><img src="assets/img-chef/chef_luthra_green_photo.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Simarpreet Luthra</h4>
<span>Chef</span>
<div class="social">
<!-- <a href=""><i class="icofont-twitter"></i></a> -->
<!-- <a href=""><i class="icofont-facebook"></i></a> -->
<a href="https://www.instagram.com/chefsimarpreet/"><i class="icofont-instagram"></i></a>
<!-- <a href=""><i class="icofont-linkedin"></i></a> -->
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member">
<div class="pic"><img src="assets/img-chef/indian_recipes_mobile_app.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Indian-Recipes Free Mobile App</h4>
<span>(100+ recipes!)</span>
<div class="social">
<!-- <a href=""><i class="icofont-twitter"></i></a> -->
<!-- <a href=""><i class="icofont-facebook"></i></a> -->
<a href="https://indian-recipes.glide.page/"> Click here to Install!</a>
<!-- <a href=""><i class="icofont-linkedin"></i></a> -->
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6">
<div class="member">
<div class="pic"><img src="assets/img/chefs/chefs-2.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Patissier</span>
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="member">
<div class="pic"><img src="assets/img/chefs/chefs-3.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>William Anderson</h4>
<span>Cook</span>
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
-->
</div>
</div>
</section><!-- End Chefs Section -->
<!-- ======= Book A Table Section ======= -->
<!-- <section id="book-a-table" class="book-a-table">
<div class="container">
<div class="section-title">
<h2>Book a <span>Table</span></h2>
<p>Ut possimus qui ut temporibus culpa velit eveniet modi omnis est adipisci expedita at voluptas atque vitae autem.</p>
</div>
<form action="forms/book-a-table.php" method="post" role="form" class="php-email-form">
<div class="form-row">
<div class="col-lg-4 col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-lg-4 col-md-6 form-group">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email">
<div class="validate"></div>
</div>
<div class="col-lg-4 col-md-6 form-group">
<input type="text" class="form-control" name="phone" id="phone" placeholder="Your Phone" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-lg-4 col-md-6 form-group">
<input type="text" name="date" class="form-control" id="date" placeholder="Date" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-lg-4 col-md-6 form-group">
<input type="text" class="form-control" name="time" id="time" placeholder="Time" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-lg-4 col-md-6 form-group">
<input type="number" class="form-control" name="people" id="people" placeholder="# of people" data-rule="minlen:1" data-msg="Please enter at least 1 chars">
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" placeholder="Message"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your booking request was sent. We will call back or send an Email to confirm your reservation. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div>
</section>
-->
<!-- End Book A Table Section -->
<section id="video-section" class="gallery">
<div class="container-fluid">
<div class="section-title">
<h2>Join our <span>Cooking classes...</span></h2>
<div class="video-wrapper">
<iframe
src="https://www.youtube-nocookie.com/embed/kizDcH0ZPzk?rel=0"
title="Chef Simarpreet Cooking Classes"
loading="lazy"
referrerpolicy="strict-origin-when-cross-origin"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
<p>(Short 48 seconds video)</p>
</div>
</div>
</section>
<!-- ======= Gallery Section ======= -->
<section id="gallery" class="gallery">
<div class="container-fluid">
<div class="section-title">
<h2>Some photos from <span>Our Home Deliveries</span></h2>
<p>Photos of food served in last few months...</p>
</div>
<div class="row no-gutters">
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/packed tiffins.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/packed tiffins.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/Chicken_Biryani.png" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/Chicken_Biryani.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/biryani2.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/biryani2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/Veg_Hakka_Noodles.png" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/Veg_Hakka_Noodles.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/biryani3.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/biryani3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/Fresh_Potato_Wedges.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/Fresh_Potato_Wedges.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/Veg_Fried_Rice.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/Veg_Fried_Rice.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/mutter_paneer.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/mutter_paneer.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/noodles-and-cutlets.png" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/noodles-and-cutlets.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/biryani raita.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/biryani raita.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/hakka noodles.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/hakka noodles.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/Dates_Kheer.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/Dates_Kheer.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/Fried Rice and Chilli Paneer.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/Fried Rice and Chilli Paneer.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img-chef/kheer_closeup.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img-chef/kheer_closeup.jpg" alt="" class="img-fluid">
</a>
</div>
</div>