-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.php
109 lines (91 loc) · 4.22 KB
/
about-us.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
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
<?php
session_start();
include_once('includes/dbconnection.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="" />
<meta name="keywords" content="" />
<title>Food Ordering System | About us</title>
<link rel="stylesheet" href="assets/css/icons.min.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/red-color.css">
<link rel="stylesheet" href="assets/css/yellow-color.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<style>
.meet-our-team{
width: 100%;
}
.meet-our-team img{
border-radius: 15px;
margin: 5% 18%;
}
</style>
</head>
<body itemscope>
<?php include_once('includes/header.php');?>
<section>
<div class="block">
<div class="fixed-bg" style="background-image: url(assets/images/topbg.jpg);"></div>
<div class="page-title-wrapper text-center">
<div class="col-md-12 col-sm-12 col-lg-12">
<div class="page-title-inner">
<h1 itemprop="headline">About Us</h1>
<span>Food And Taste - Mini Project</span>
</div>
</div>
</div>
</div>
</section>
<div class="bread-crumbs-wrapper">
<div class="container">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#" title="" itemprop="url">Home</a></li>
<li class="breadcrumb-item active">About Us</li>
</ol>
</div>
</div>
<section>
<div class="block less-spacing gray-bg top-padd30">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-lg-12">
<div class="sec-box">
<div class="about-feat text-center wow fadeIn" data-wow-delay="0.2s">
<h2 class="title3" itemprop="headline">Where you are served at you own pace</h2>
<img src="https://www.fullestop.com/blog/wp-content/uploads/2019/04/Importance-of-Having-Online-Food-Ordering-System-for-Restaurants.jpg" alt="about-img.jpg" itemprop="image">
</div>
<div class="title1-wrapper text-center style2">
<div class="title1-inner">
<h2 itemprop="headline">About us</h2>
<p itemprop="description"><p>We offer food order service via online system, where one can track the the order using truck number.and food will be delivered at your door step</p></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!---------------------------- MEET OUR TEAM SECTION START HERE ------------------------------------>
<section>
<div class="meet-our-team wow fadeIn" data-wow-delay="0.3s">
<img src="https://i.postimg.cc/T35CnVbK/Brown-Blue-Creative-Meet-Our-Team-Instagram-Post-1.png" alt="" height="1000px" width="1000px">
</div>
</section>
<!---------------------------- MEET OUR TEAM SECTION START HERE ------------------------------------>
<?php include_once('includes/footer.php');
include_once('includes/signin.php');
include_once('includes/signup.php');
?>
</main><!-- Main Wrapper -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/plugins.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>