-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
79 lines (66 loc) · 2.66 KB
/
about.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
<?php
session_start();
include("includes/db.php");
include("includes/header.php");
include("includes/navbar.php");
?>
<section class="bg-warning py-5">
<div class="container">
<div class="row align-items-center py-5">
<div class="col-md-8 text-white">
<h1>About Us</h1>
<p>
We are LiquorPlug.We are your plug whenever you are in of any liquor of your choice .We offer wines , whiskey , Gin , Rum
beers and ciders only to mention a few .Visit our store and find out or visit our online <a href="shop.html">store</a>.
</p>
</div>
<div class="col-md-4">
<img src="assets/img/about1.jpg" alt="About Hero">
</div>
</div>
</div>
</section>
<!-- Close Banner -->
<!-- Start Section -->
<section class="container py-5">
<div class="row text-center pt-5 pb-3">
<div class="col-lg-6 m-auto">
<h1 class="h1">Our Services</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 pb-5">
<div class="h-100 py-5 services-icon-wap shadow">
<div class="h1 text-warning text-center"><i class="fa fa-truck fa-lg"></i></div>
<h2 class="h5 mt-4 text-center">Delivery Services</h2>
</div>
</div>
<div class="col-md-6 col-lg-3 pb-5">
<div class="h-100 py-5 services-icon-wap shadow">
<div class="h1 text-danger text-center"><i class="fa fa-percent"></i></div>
<h2 class="h5 mt-4 text-center">Promotion</h2>
</div>
</div>
<div class="col-md-6 col-lg-3 pb-5">
<div class="h-100 py-5 services-icon-wap shadow">
<div class="h1 text-secondary text-center"><i class="fa fa-user"></i></div>
<h2 class="h5 mt-4 text-center">24 Hours Service</h2>
</div>
</div>
</div>
</section>
<!-- End Section -->
<!-- Start Footer -->
<?php
include("includes/footer.php");
?>
<!-- End Footer -->
<!-- Start Script -->
<script src="assets/js/jquery-1.11.0.min.js"></script>
<script src="assets/js/jquery-migrate-1.2.1.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/templatemo.js"></script>
<script src="assets/js/custom.js"></script>
<!-- End Script -->
</body>
</html>