-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
660 lines (510 loc) · 20.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Virtual Restaurant- Index</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: FlexStart - v1.1.0
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="header fixed-top">
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<style>#header{
background-color: #ffffff;
} </style>
<a href="index.html" class="logo d-flex align-items-center">
<img class="img_logo" src="logo.png" alt="">
<span>VR</span>
</a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="index.html">Home</a></li>
<li><a class="nav-link scrollto" onclick="myFunction()" >Reservation</a></li>
<li><a class="nav-link scrollto" href="about.html"> About Us</a></li>
<li><a class="nav-link scrollto" onclick="myFunction()"> Menu</a></li>
<li><a class="nav-link scrollto" href="cat_request.php">Contact</a></li>
<li class="dropdown"><a href="#"><span>Menu </span> <i class="bi bi-chevron-down"></i></a>
<ul>
</li>
</ul>
</li>
<li><a class="getstarted scrollto" href="login.php">Log in</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<script>
function myFunction() {
document.getElementById("demo").innerHTML = alert("Please Login First");
}
</script>
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up">Hey, Welcome !</h1>
<h2 data-aos="fade-up">Good food and great vibes.</h2>
<br><br>
<div ><br><br>
<div class="text-center text-lg-start">
<a onclick="myFunction()" href="login.php" class="btn btn btn_primary scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Reserve Table</span>
</a>
</div>
</div>
</div>
<div class="col-lg-6 hero-img" >
<img data-aos="fade-up-right" src="2.svg " class="img-fluid" alt="">
</div>
</div>
<div>
</section><!-- End Hero -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 data-aos="fade-up">Hurry Up !</h1>
<h2 data-aos="fade-up">Get Fresh ! Safe Food Home Delivary!!</h2>
<br>
<p data-aos="fade-up">Order food & beverages online from restaurants near & around you. We deliver food from your neighborhood local joints in your area. Exciting bit? We place no minimum order restrictions! Order in as little (or as much) as you'd like.</p>
<div ><br><br>
<div class="text-center text-lg-start">
<a onclick="myFunction()" href="login.php" class="btn btn btn_primary scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Order Now</span>
</a>
</div>
</div>
</div>
<div class="col-lg-6 hero-img" >
<img style="margin-left: 60px;" data-aos="fade-up-right" src="https://image.freepik.com/free-vector/safe-food-delivery_23-2148547689.jpg" class="img-fluid" alt="">
</div>
</div>
<div>
</section><!-- End Hero -->
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<center> <h1 data-aos="fade-up -right"> Galary</h1></center><br><br>
<div id="carousel-example-1z" class="carousel slide carousel-fade" data-ride="carousel">
<!--Indicators-->
<ol class="carousel-indicators">
<li data-target="#carousel-example-1z" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-1z" data-slide-to="1"></li>
<li data-target="#carousel-example-1z" data-slide-to="2"></li>
</ol>
<!--/.Indicators-->
<!--Slides-->
<div class="carousel-inner" role="listbox">
<!--First slide-->
<div class="carousel-item active">
<img id="img1" src="https://img4.nbstatic.in/tr:w-500/5e20402acff47e000c438886.jpg"
alt="First slide">
</div>
<!--/First slide-->
<!--Second slide-->
<div class="carousel-item">
<img id="img1" src="https://media-cdn.tripadvisor.com/media/photo-s/04/5a/a4/b4/cafe-blu.jpg"
alt="Second slide">
</div>
<!--/Second slide-->
<!--Third slide-->
<div class="carousel-item">
<img id="img1" src="https://cdn.eatigo.com/restaurant-cover-image/5004078_panel_f0f007f5-fb64-40f3-b488-054e0f3899cd.jpg"
alt="Third slide">
</div>
<!--/Third slide-->
</div>
<!--/.Slides-->
<!--Controls-->
<a class="carousel-control-prev" href="#carousel-example-1z" 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="#carousel-example-1z" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<!--/.Controls-->
</div>
</body>
<style type="text/css">
.carousel{
background: #fff;
width: 870px;
height: 430px;
margin-left: 100px;
margin-top: 20px;
box-shadow: 0 7px 0 #BFBAAD, 0 0.5em 0 #A8A38C, 0 12px 12px #A8A38C;
}
.carousel-item{
text-align: center;
/* Prevent carousel from being distorted if for some reason image doesn't load */
}
.carousel-indicators li, .carousel a{
cursor: pointer;
}
#img1,#myCarousel
{
width: 870px;
height: 430px;
}
</style>
</section>
<center><br><br><h1 style=" font-size: 48px;
font-weight: 700;
color: #012970;" data-aos="fade-up-left">Our Team </h1></center>
<section id="hero" class="hero d-flex align-items-center">
<div class="center">
<div data-aos="zoom-in" class="property-card">
<a href="#">
<div class="property-image">
<div class="property-image-title">
<!-- Optional <h5>Card Title</h5> If you want it, turn on the CSS also. -->
</div>
</div></a>
<div class="property-description">
<h5>Manager 1 </h5>
<p> Handels Adminstration Part .</p>
</div>
<a href="#">
<div class="property-social-icons">
</div>
</a>
</div>
</div>
<div class="center">
<div data-aos="zoom-in" class="property-card">
<a href="#">
<div class="property1-image">
<div class="property-image-title">
<!-- Optional <h5>Card Title</h5> If you want it, turn on the CSS also. -->
</div>
</div></a>
<div class="property-description">
<h5> Sinor Chef </h5>
<p>Handels kicthen</p>
</div>
<a href="#">
<div class="property-social-icons">
</div>
</a>
</div>
</div>
<div class="center">
<div data-aos="zoom-in" class="property-card">
<a href="#">
<div class="property2-image">
<div class="property-image-title">
<!-- Optional <h5>Card Title</h5> If you want it, turn on the CSS also. -->
</div>
</div></a>
<div class="property-description">
<h5> Staff</h5>
<p>.</p>
</div>
<a href="#">
<div class="property-social-icons">
</div>
</a>
</div>
</div>
</section><!-- End About Section -->
<center><br><br><h1 style=" font-size: 48px;
font-weight: 700;
color: #012970;" data-aos="fade-up-left">Our Services </h1></center>
<section id="hero" class="hero d-flex align-items-center">
<div class="container">
<div class="row">
<h1 data-aos="zoom-in" style="font-size: 38px;">CATERING</h1>
<p style="width: 600px; margin-top: 60px;font-size: 20px;font-weight: 500;">
Do you have to organize lunches or dinners, business events or private parties?<br>
The Risotteria Melotti will cook the dishes for you,<br> recreating a typically italian atmosphere in your home or wherever you prefer. <br>
Do not hesitate to ask for more information.
</p>
<div>
<div class="imgcatering" style="margin-left: 600px;margin-top: -250px; width: 500px;height: 350px; " >
<img style="width: 500px;margin-left: 100px; height: 300px;" data-aos="fade-up-left" src="catering.png" class="img-fluid" alt="">
</div>
<br><br>
<div class="text-center text-lg-start">
<a href="cat_request.php" class="btn btn btn_primary scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Send Request</span>
</a>
</div>
<div class="text-center text-lg-start">
<a style="margin-top: 80px;" onclick="myFunction1()" class="btn btn btn_primary scrollto d-inline-flex align-items-center justify-content-center align-self-center">
<span>Give feedback</span>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css'>
<!-- Bootstrap core CSS-->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<a class="first" ></a>
<script type="text/javascript">
function myFunction1() {
Swal.fire({
icon : 'success',
title: 'Write feedback',
html:
'<form action="index.html" method="post">'+
'<input type="text" style="margin-bottom:30px; width:400px;height:50px;" name="name" placeholder ="Name" required=""><br>' +
'<input type="email" style="margin-bottom:30px; width:400px;height:50px;" name="email" placeholder ="Email" required=""><br>' +
' <textarea type="text" name="request" placeholder="Write Your honest FeedBack" required="" style="width: 400px;height: 150px; margin-bottom: 20px; border-color: black; border-radius:8px;"></textarea>'+
'<button type="text" style="margin-bottom:30px; width:250px;height:50px; font-size:22px;border-radius:8px; color: blue; background-color: #adf06a ;" name="SEND" > Submit</button><br>' +
'</form>'
})
}
</script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:300">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css
">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js" > </script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js
"></script>
<?php
include("connect.php");
if(isset($_POST['SEND']))
{
$name=$_POST['name'];
$email=$_POST['email'];
$request = $_POST['request'];
$sql ="INSERT INTO feedback (Name ,email,feedback) VALUES ('$name','$email','$request');";
$query= mysqli_query($conn,$sql);
if($query)
{
echo 'done';
}
}
?>
</a>
</div>
</section>
<center>
<script src="https://apps.elfsight.com/p/platform.js" defer></script>
<div class="elfsight-app-50f73698-bf53-4592-8308-c5d9c3302756"></div></center>
<!-- ======= Footer ======= -->
<footer id="footer" class="footer">
<div class="footer-top">
<div class="container">
<div class="row gy-4">
<div class="social-links mt-3">
<a href="#" class="twitter"><i class="bi bi-twitter"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="#" class="instagram"><i class="bi bi-instagram bx bxl-instagram"></i></a>
<a href="#" class="linkedin"><i class="bi bi-linkedin bx bxl-linkedin"></i></a>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>Group15</span></strong>. All Rights Reserved
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>
<style type="text/css">
.btn {
display: inline-block;
vertical-align: baseline;
padding: 16px 28px;
border-color: transparent;
border-radius: 8px;
font-family: "Nunito", sans-serif;
font-weight: 650;
text-decoration: none;
cursor: pointer;
text-align: center;
text-transform: uppercase;
-webkit-transition: all 200ms ease-in;
transition: all 200ms ease-in
}
.btn_primary {
border: none;
background-image: -webkit-linear-gradient(248.16deg, #4DD4FF -32.14%, #A041FF 113.57%);
background-image: linear-gradient(201.84deg, #4DD4FF -32.14%, #A041FF 113.57%);
color: #ffffff
}
.btn_primary:hover {
color: #ffffff;
opacity: 0.8;
-webkit-box-shadow: 0 0 20px 7px rgba(151, 156, 255, 0.44);
box-shadow: 0 0 20px 7px rgba(151, 156, 255, 0.44)
}
.btn--full {
min-width: 250px;
padding: 15px 42px;
font-size: 20px;
color: #ffffff;
line-height: 1.4;
text-transform: none;
-webkit-transition: all 200ms ease-in;
transition: all 200ms ease-in
}
.property-card
{
height:20em;
float: left;
width:14em;
position:relative;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
border-radius:16px;
overflow:hidden;
-webkit-box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
}
.property-image
{
height:150px;
width:14em;
padding:1em 2em;
position:Absolute;
top:0px;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
background-image:url('https://hiring-assets.careerbuilder.com/media/attachments/careerbuilder-ar_post-2372.jpg?1465925468');
background-size:cover;
background-repeat:no-repeat;
}
.property2-image
{
height:150px;
width:14em;
padding:1em 2em;
position:Absolute;
top:0px;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
background-image:url('https://www.restaurant-hospitality.com/sites/restaurant-hospitality.com/files/styles/article_featured_retina/public/uploads/2015/10/stockworkers.jpg?itok=HVOqnj8Q');
background-size:cover;
background-repeat:no-repeat;
}
.property1-image
{
height:150px;
width:14em;
padding:1em 2em;
position:Absolute;
top:0px;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
background-image:url('https://i.insider.com/5d13ad8b9c51011d54215f53?width=1100&format=jpeg&auto=webp');
background-size:cover;
background-repeat:no-repeat;
}
/* Bottom Card Section */
.property-description
{
background-color: #FAFAFC;
height:12em;
width:14em;
position:absolute;
bottom:0em;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
padding: 0.5em 1em;
text-align:center;
}
/* Property Cards Hover States */
.property-card:hover .property-description
{
height:5em;
padding:0px 0em;
}
.property-card:hover .property-image
{
height:13em;
background-size: cover;
}
.property-card:hover .property1-image
{
height:13em;
background-size: cover;
}
.property-card:hover .property2-image
{
height:13em;
background-size: cover;
}
.property-card:hover .property-social-icons:hover
{
background-color:blue;
cursor:pointer;
}
.center
{
margin-left: 50px;
height:100vh;
float: left;
width:100%;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<script type="text/javascript">
var speed = 10;
/* Call this function with a string containing the ID name to
* the element containing the number you want to do a count animation on.*/
function incEltNbr(id) {
elt = document.getElementById(id);
endNbr = Number(document.getElementById(id).innerHTML);
incNbrRec(0, endNbr, elt);
}
/*A recursive function to increase the number.*/
function incNbrRec(i, endNbr, elt) {
if (i <= endNbr) {
elt.innerHTML = i;
setTimeout(function() {//Delay a bit before calling the function again.
incNbrRec(i + 1, endNbr, elt);
}, speed);
}
}
/*Function called on button click*/
function incNbr(){
incEltNbr("nbr");
}
incEltNbr("nbr"); /*Call this funtion with the ID-name for that element to increase the number within*/
</script>