-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout-us.php
34 lines (29 loc) · 1.34 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
<?php
include ("header.php");
?>
<div class="breadcrumb-area gray-bg">
<div class="container">
<div class="breadcrumb-content">
<ul>
<li><a href="<?php echo FRONT_SITE_PATH?>shop.php">Home</a></li>
<li class="active">About us </li>
</ul>
</div>
</div>
</div>
<div class="about-us-area pt-50 pb-100">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-7 d-flex align-items-center">
<div class="overview-content-2">
<h2>Welcome To <span>Online Food ordering</span> Store !</h2>
<p> Online Food Ordering is the process of ordering food form a website or other application.The product can be either ready-to-eat food (e.g.,direct from a home-kitchen,mini-shop,restaurant,or a ghost kitchen)or food that has not been specially prepared for direction consumption(e.g.,vegetables direct from a farm/garden,frozen meats. etc).</p>
<p>Created by: Vandit Bera.</p>
</div>
</div>
</div>
</div>
</div>
<?php
include("footer.php");
?>