-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
60 lines (42 loc) · 1.75 KB
/
index.php
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
<?php include('includes/header.php');?>
<body>
<?php include('includes/menubar.php');?>
<div class="container-xxl py-5 bg-dark hero-header mb-5">
<div class="container my-5 py-5">
<div class="row align-items-center g-5">
<div class="col-lg-6 text-center text-lg-start">
<h1 class="display-3 text-white animated slideInLeft">Enjoy Our<br>Delicious Meal</h1>
<p class="text-white animated slideInLeft mb-4 pb-2">Home-style meals, prepared in state-of the art
automated kitchen. The kitchen maintains the highest levels of hygiene and sanitization while
handling food.</p>
<a href="signup.php" class="btn btn-primary py-sm-3 px-sm-5 me-3 animated slideInLeft">Quick sign
up</a>
</div>
<div class="col-lg-6 text-center text-lg-end overflow-hidden">
<img class="img-fluid" src="img/main-img.png" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Navbar & Hero End -->
<!-- Service Start -->
<?php include('assets/service.php');?>
<!-- Service End -->
<!-- About Start -->
<?php include('assets/about.php');?>
<!-- About End -->
<!-- Menu start -->
<?php include('assets/menu.php');?>
<!-- Menu End -->
<!-- Reservation Start -->
<?php include('assets/signup.php');?>
<!-- Reservation Start -->
<!-- Team Start -->
<?php include('assets/team.php');?>
<!-- Team End -->
<!-- Testimonial Start -->
<?php include('assets/reviews.php');?>
<!-- Testimonial End -->
<!-- Footer Start -->
<?php include('includes/footer.php');?>