-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
556 lines (540 loc) · 32.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PARADISE</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
<!-- ----------------------------------- -->
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Arvo&family=Cairo&family=EB+Garamond:wght@700&family=Kalam&family=Special+Elite&family=Sriracha&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-sm fixed-top">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#Navbar">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand mr-auto logo" href="#"><img src="img/logo2.png" height="40" width="60"></a>
<div class="collapse navbar-collapse" id="Navbar">
<ul class="navbar-nav mr-auto justify-content-center ">
<li class="nav-item active"><a class="nav-link" href="./index.html"><span class="fa fa-home fa-lg"></span> Home</a></li>
<li class="nav-item "><a class="nav-link" href="./aboutus.html"><span class="fa fa-info fa-lg"></span> About</a></li>
<li class="nav-item "><a class="nav-link" href="./menu.html"><span class="fa fa-list fa-lg"></span> Menu</a></li>
<li class="nav-item "><a class="nav-link" href="./contactus.html"><span class="fa fa-address-card fa-lg"></span> Contact</a></li>
</ul>
<span class="navbar-text">
<a data-toggle="modal" href="#" data-target="#loginModal">
<span class="fa fa-sign-in"></span> Login</a>
</span>
<a class="navbar-brand ml-4 mr-0 " href="./chef.html"><img class="img1" src="img/chef.png" height="60" width="60"></a>
</div>
</div>
</nav>
<div id="loginModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg" role="content">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Login </h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form>
<div class="form-row">
<div class="form-group col-sm-4">
<label class="sr-only" for="exampleInputEmail3">Email address</label>
<input type="email" class="form-control form-control-sm mr-1" id="exampleInputEmail3" placeholder="Enter email">
</div>
<div class="form-group col-sm-4">
<label class="sr-only" for="exampleInputPassword3">Password</label>
<input type="password" class="form-control form-control-sm mr-1" id="exampleInputPassword3" placeholder="Password">
</div>
<div class="col-sm-auto">
<div class="form-check">
<input class="form-check-input" type="checkbox">
<label class="form-check-label"> Remember me
</label>
</div>
</div>
</div>
<div class="form-row">
<button type="submit" class="btn btn-primary btn-sm ml-1">Sign in</button>
<button type="button" class="btn btn-secondary btn-sm ml-1" data-dismiss="modal">Cancel</button>
<!--button type="submit" class="btn btn-primary btn-sm ml-1">Sign in</button-->
</div>
</form>
</div>
</div>
</div>
</div>
<header>
<div class="container"></div>
<div class="jumbotron jumbotron-fluid">
<video text-center autoplay muted loop poster="">
<source src="./img/food3.mp4" mimeType="video/mp4">
</video>
<br><br><br><br><brs>
<!--div class="jumbo_image"></div-->
<div class="row row-header">
<div class=" text_jumbo col-12 col-sm-7 offset-sm-4 align-self-center">
<h1 class="name">Paradise</h1>
<p class="col-9 offset-sm-3 tag">Food from the heaven ....</p>
</div>
</div>
</div>
</header>
<div id="reserveModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg" role="content">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Reserve a Table </h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<form>
<div class="form">
<div class="row">
<div class="col-12 col-sm-4">Number of Guests</div>
<div class="col-12 col-sm-8">
<label class="radio-inline active"><input type="radio" name="optradio"> 1 </label>
<label class="radio-inline"><input type="radio" name="optradio"> 2 </label>
<label class="radio-inline"><input type="radio" name="optradio"> 3 </label>
<label class="radio-inline"><input type="radio" name="optradio"> 4 </label>
<label class="radio-inline"><input type="radio" name="optradio"> 5 </label>
<label class="radio-inline"><input type="radio" name="optradio"> 6 </label>
</div>
</div><br>
<div class="row">
<div class="col-12 col-sm-4">
Section
</div>
<div class="col-12 col-sm-4">
<div class="btn-group" role="group">
<a role="button" class="btn btn-success ml-auto btn-sm badge-default" >VEG</a>
<a role="button" class="btn btn-danger ml-1 btn-sm">NON-VEG</a>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-12 col-sm-4">Date and Time</div>
<div class="col-12 col-sm-8">
<div class="row">
<div class="col-10 col-sm-6">
<input type="date" class="form-control" id="date" name="date" placeholder="Date">
</div>
<div class="col-10 col-sm-6">
<input type="time" class="form-control" id="time" name="time" placeholder="Time">
</div>
</div>
</div>
</div><br><br>
</div>
<div class="form-row">
<div class="col-sm-4 offset-sm-4">
<button type="submit" class="btn btn-primary btn-sm ml-1">Reserve</button>
<button type="button" class="btn btn-dark btn-sm ml-1" data-dismiss="modal">Cancel</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<section id="book">
<div class="container">
<div class="row">
<div class="col-sm-4 align-self-center">
<a role="button" class=" reserve btn btn-warning " data-toggle="modal" data-target="#reserveModal">Book a Table</a>
</div>
<div class="col-12 col-sm-4 mr-0 offset-sm-4 align-self-center">
<div class="text-center">
<a class="btn btn-social-icon btn-google" href="http://google.com/+"><span class="link "><i class="fa fa-google-plus"></i></span></a>
<a class="btn btn-social-icon btn-facebook" href="http://www.facebook.com/profile.php?id="><span class="link "><i class="fa fa-facebook"></i></span></a>
<a class="btn btn-social-icon btn-twitter" href="http://twitter.com/"><span class="link "><i class="fa fa-twitter"></i></span></a>
<a class="btn btn-social-icon btn-google" href="http://youtube.com/"><span class="link "><i class="fa fa-youtube"></i></span></a>
<a class="btn btn-social-icon" href="mailto:"><span class="link "><i class="fa fa-envelope-o"></i></span></a>
</div>
</div>
</div>
</div>
</section>
<div class="container intro">
<div class="row">
<div class="col-md-6">
<h4>Welcome to Paradise !!</h4>
<h1>We are a modern Indian restaurant in the center of the city.</h1>
<p>We would like to take this opportunity to welcome you to our restaurant. We guarantee you the freshest food, delivered daily to our dock, prepared to your liking. We can prepare a specific meal by request. All our locations are providing a wonderful open-air venue to enjoy the meal all year round, we offer both indoor and alfresco dining and our focus is on serving.
</p>
</div>
<div class="col-md-5 offset-sm-1">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/img19.png" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/img18.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/img24.png" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/img12.png" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/img22.png" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
<div class="container team">
<div class="row">
<h4 >Behind the scenes </h4>
</div>
<div class="row row-content align-items-center">
<div class="col col-sm col-md order-sm-first">
<div class="media">
<div class="geeks co-sm-6">
<a href="https://en.wikipedia.org/wiki/Sanjeev_Kapoor">
<img class="d-flex mr-3 img-thumbnail rounded-circle align-self-center"
src="img/chef1.png" alt="chef">
</a>
</div>
<div class="media-body align-self-center col-md-6" >
<h3 class="chef_name">Chef Sanjeev Kapoor </h3>
<h5 class="mt-0" style="text-align:center;">Co-Founder, Chef </h5>
<div style="text-align:center;">
<a class="btn btn-social-icon btn-facebook" href="http://www.facebook.com/profile.php?id="><span class="chefbtn" ><i class="fa fa-facebook chefbtn " style="text-align:center;"></i></span></a>
<a class="btn btn-social-icon btn-linkedin" href="http://www.linkedin.com/in/"><span class="chefbtn"><i class="fa fa-linkedin chefbtn " style="text-align:center;"></i></span></a>
</div><br>
<p class="d-flex chef_des d-sm-block">A famous Indian celebrity chef, entrepreneur and television personality. Awarded by Padma Shri in 2017. National Awardee of ‘Best Chef of India’ by the Government of India.
</p>
</div>
</div>
</div>
</div>
<div class="row row-content align-items-center">
<div class="col col-sm col-md ml-4 order-sm-second">
<div class="media">
<div class="geeks mr-5">
<a href="https://en.wikipedia.org/wiki/Kunal_Kapur">
<img class="d-flex mr-3 img-thumbnail rounded-circle align-self-center"
src="img\chef2.png" alt="Chef">
</a>
</div>
<div class="media-body order-sm-first align-self-center col-sm-6 offset-1">
<h3 class="chef_name">Chef Kunal Kapoor</h3>
<h5 class="mt-0" style="text-align:center;">Co-Founder, Chef </h5>
<div style="text-align:center;">
<a class="btn btn-social-icon btn-facebook" href="http://www.facebook.com/profile.php?id="><span class="chefbtn" ><i class="fa fa-facebook chefbtn " style="text-align:center;"></i></span></a>
<a class="btn btn-social-icon btn-linkedin" href="http://www.linkedin.com/in/"><span class="chefbtn"><i class="fa fa-linkedin chefbtn " style="text-align:center;"></i></span></a>
</div><br>
<p class="d-none chef_des d-sm-block">An Indian celebrity chef and restaurateur known for hosting and judging MasterChef India. Had received the Dr. S Radhakrishnan National Media Network Award in 2014.The Most Enterprising Brands & Leaders of Asia Award by WBR India. </p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 align-self-center">
<a role="button" class=" reserve btn btn-warning " href="./chef.html">Meet our Staff</a>
</div>
</div>
</div>
<!--section id="chef_intro">
<div class="container team">
<div class="row">
<h4 >Behind the Scenes </h4>
</div>
<br><br>
<div class="row">
<div class="col-md-5 ">
<div class="row ">
<h4>Our Team</h4>
<h1>Meet our very best chefs !</h1>
<br><br><br><br>
<a class="teamurl"href="#"> View All Team</a>
</div>
</div>
<div class="col-md-6 team1 offset-sm-1">
<div class="row">
<div class="col-md-6 mt-4">
<div class="container">
<img class="chef" src="img/chef1.png" class="rounded-circle" width="250px" height="300px">
</div>
</div>
<div class="col-md-6 mt-4">
<h5>Chef Sanjeev Kapoor</h5>
<p>Co-Founder, Chef</p><hr>
<p>A famous Indian celebrity chef, entrepreneur and television personality. Awarded by Padma Shri in 2017. National Awardee of ‘Best Chef of India’ by the Government of India. </p>
</div>
</div>
<div class="row">
<div class="col-md-6 mb-4">
<div class="container">
<img src="img/chef2.png" class="chef" class="rounded-circle"width="250px" height="300px">
</div>
</div>
<div class="col-md-6 md-4">
<h5>Chef Kunal Kapoor</h5>
<p>Co-Founder, Chef</p><hr>
<p>An Indian celebrity chef and restaurateur known for hosting and judging MasterChef India. Had received the Dr. S Radhakrishnan National Media Network Award in 2014.The Most Enterprising Brands & Leaders of Asia Award by WBR India. </p>
</div>
</div>
</div>
</div>
</div>
</section-->
<br><br>
<section id="menu">
<div class="container1">
<div class="container">
<br><br><h2 class="ml-4">Explore the menu</h2><br>
</div>
<div class="container">
<div class="mt-4 row ">
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food3.png">
</div>
<div class="col-sm-3">
<p>North-Indian Thali</p>
</div>
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food2.png">
</div>
<div class="col-sm-3">
<p>South-Indian Thali</p>
</div>
</div>
<div class="mt-4 row ">
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food18.png">
</div>
<div class="col-sm-3">
<p>Rajasthani Thali</p>
</div>
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food4.png">
</div>
<div class="col-sm-3">
<p>Punjabi Lachha-Paratha</p>
</div>
</div>
<div class="mt-4 row">
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food24.png">
</div>
<div class="col-sm-3">
<p>Punjabi Thali</p>
</div>
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food25.png">
</div>
<div class="col-sm-3">
<p>Gujarati Thali</p>
</div>
</div>
<div class="mt-4 row">
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food17.png">
</div>
<div class="col-sm-3">
<p>Bengali Thali</p>
</div>
<div class="col-sm-3">
<img class=" mr-3 img-thumbnail align-self-center" width="180px" height="150px" src="img/food23.png">
</div>
<div class="col-sm-3">
<p>Marathi Thali</p>
</div>
</div>
</div>
</div>
</section>
<div class=" test">
<div class="container ">
<div class="row">
<h4>Testimonials</h4>
</div>
</div>
<div class="row row-content">
<div class="col testimonial">
<div id="mycarousel" class="carousel slide" data-ride="carousel" style="height: 400px; margin: 0 auto"><br>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src="img\img13.png" class="rounded-circle"width="250px" height="300px" alt="Weekend Buffet" >
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Person1<span class="badge badge-danger"></span> <span class="badge badge-pill badge-default">$4.99</span></h2-->
<p class="d-none d-sm-block test">Fantastic food! It was very fresh and flavorful. We could tell it was just made for us. A little slow, but worth the wait. Yum!</p>
</div>
</div>
<div class="carousel-item">
<img src="img\img28.png" class="rounded-circle"width="300px" height="300px" alt="Weekend Buffet" >
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Weekend Grand Buffet <span class="badge badge-danger">NEW</span></h2-->
<p class="d-none d-sm-block test">Excellent Indian restaurant. Wonderful flavors across all the dishes I've tried. BYOB. Liked: Food, Service, Atmosphere, Value</p>
</div>
</div>
<div class="carousel-item">
<img src="img/img14.png" class="rounded-circle" width="250px" height="300px" alt="Chef Sanjeev Kapoor">
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Chef Sanjeev Kapoor</h2><h4>Executive Chef</h4-->
<p class="d-none d-sm-block test">I love this northern Indian cuisine. The potato flat bread was spectacular, even turning one of my non- believer friends to the Indian cuisine light side. The samosas are beyond belief delicious, and the sauces that go with them make them perfect. Very good.
</p>
</div>
</div>
<div class="carousel-item">
<img src="img/img30.png" class="rounded-circle" width="280px" height="300px" alt="Chef Sanjeev Kapoor">
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Chef Sanjeev Kapoor</h2><h4>Executive Chef</h4-->
<p class="d-none d-sm-block test">Yummy! Yummy! Yummy! Very tasty indian food and the restaurant is very beautiful.
</p>
</div>
</div>
<div class="carousel-item">
<img src="img/img16.png" class="rounded-circle" width="280px" height="300px" alt="Chef Sanjeev Kapoor">
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Chef Sanjeev Kapoor</h2><h4>Executive Chef</h4-->
<p class="d-none d-sm-block test">Top notch! The food is perfect, service friendly, courteous, caring and very prompt, and the rooms are well decorated. You can tell the kitchen spends many many hours preparing for their guests arrival. The dishes here have been honed to perfection. </p>
</div>
</div>
<div class="carousel-item">
<img src="img/img23.png" class="rounded-circle" width="250px" height="300px" alt="Chef Sanjeev Kapoor">
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Chef Sanjeev Kapoor</h2><h4>Executive Chef</h4-->
<p class="d-none d-sm-block test">Without a doubt, the finest Indian food I have ever had.I have to say this is my favorite indian restaurant. EVERYTHING is really good, from the mouth watering snacks, to the deserts.
</p>
</div>
</div>
<div class="carousel-item">
<img src="img/img33.png" class="rounded-circle" width="280px" height="300px" alt="Chef Sanjeev Kapoor">
<div class="carousel-caption d-none d-md-block col-md-7 offset-md-2">
<!--h2>Chef Sanjeev Kapoor</h2><h4>Executive Chef</h4-->
<p class="d-none d-sm-block test">Ride On makes the best juices and smoothies. I absolutely love their Veg Out juice. And Thin Mint and Almond Joy smoothies are amazing. The staff is so friendly and helpful! It’s a regular on my lunch rotation.</p>
</div>
</div>
</div>
<ol class="carousel-indicators">
<li data-target="#mycarousel" data-slide-to="0" class="active"></li>
<li data-target="#mycarousel" data-slide-to="1"></li>
<li data-target="#mycarousel" data-slide-to="2"></li>
<li data-target="#mycarousel" data-slide-to="3"></li>
<li data-target="#mycarousel" data-slide-to="4"></li>
<li data-target="#mycarousel" data-slide-to="5"></li>
<li data-target="#mycarousel" data-slide-to="6"></li>
</ol>
<a class="carousel-control-prev" href="#mycarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#mycarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</div>
<!--div class="row row-content align-items-center">
<div class="col-12 col-sm-4 col-md-3 order-sm-last">
<h3>Meet our Culinary Specialists</h3>
</div>
<div class="col col-sm col-md order-sm-first">
<div class="media">
<div class="media-body">
<h2 class="mt-0">Chef Sanjeev Kapoor</h2>
<h4>Executive Chef</h4>
<p class="d-none d-sm-block">Award winning three-star Michelin chef with wide
International experience having worked closely with
whos-who in the culinary world, he specializes in
creating mouthwatering Indo-Italian fusion experiences.
</p>
</div>
<img class="d-flex mr-3 img-thumbnail align-self-center"
src="img/jumbotron.png" width="200px" height="200px" alt="Chef Sanjeev Kapoor">
</div>
</div>
</div-->
</div>
<br><br>
<br><br>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-4 col-sm-2 offset-1">
<span class="heading"><h5 >Links</h5></span>
<ul class="list-unstyled">
<li><a href="./index.html">Home</a></li>
<li><a href="./aboutus.html">About</a></li>
<li><a href="#">Menu</a></li>
<li><a href="./contactus.html">Contact</a></li>
</ul>
</div>
<div class="col-7 col-sm-5">
<span class="heading"><h5>Our Address</h5></span>
<address>
121,Old Airport Road<br>
Kodihalli, Bangalore, Karnataka<br>
INDIA<br>
<i class="fa fa-phone fa-lg"></i>: +852 1234 5678<br>
<i class="fa fa-fax fa-lg"></i>: +852 8765 4321<br>
<i class="fa fa-envelope fa-lg"></i>:
<a href="mailto:[email protected]">[email protected]</a>
</address>
</div>
<div class="col-12 col-sm-4 align-self-center">
<div class="text-center">
<a class="btn btn-social-icon btn-google" href="http://google.com/+"><span class="heading"><i class="fa fa-google-plus"></i></span></a>
<a class="btn btn-social-icon btn-facebook" href="http://www.facebook.com/profile.php?id="><span class="heading"><i class="fa fa-facebook"></i></span></a>
<a class="btn btn-social-icon btn-linkedin" href="http://www.linkedin.com/in/"><span class="heading"><i class="fa fa-linkedin"></i></span></a>
<a class="btn btn-social-icon btn-twitter" href="http://twitter.com/"><span class="heading"><i class="fa fa-twitter"></i></span></a>
<a class="btn btn-social-icon btn-google" href="http://youtube.com/"><span class="heading"><i class="fa fa-youtube"></i></span></a>
<a class="btn btn-social-icon" href="mailto:"><span class="heading"><i class="fa fa-envelope-o"></i></span></a>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-auto">
<span class="heading"><p><br><br>© Copyright 2020 PARADISE RESTAURANT<br><br></p></span>
</div>
</div>
</div>
</footer>
<!-- jQuery first, then Popper.js, then Bootstrap JS. -->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!--script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script-->
</body>
</html>