-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.php
194 lines (170 loc) · 7.17 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
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
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
?>
<!DOCTYPE html>
<html class="no-js" lang="zxx">
<head>
<!-- Basic page needs
============================================ -->
<title>Easy Move || About Us </title>
<meta name="description" content="">
<!-- ============== All CSS ================ -->
<link rel="stylesheet" href="css1/normalize.css">
<link rel="stylesheet" href="css1/animate.css">
<link rel="stylesheet" href="css1/bootstrap.min.css">
<link rel="stylesheet" href="css1/meanmenu.min.css">
<link rel="stylesheet" href="css1/font-awesome.min.css">
<link rel="stylesheet" href="css1/icofont.css">
<link rel="stylesheet" href="css1/change-text.css">
<link rel="stylesheet" href="css1/jquery.mb.YTPlayer.min.css">
<link rel="stylesheet" href="css1/main.css">
<link rel="stylesheet" href="css1/owl.carousel.css">
<link rel="stylesheet" href="css1/owl.theme.css">
<link rel="stylesheet" href="css1/owl.transitions.css">
<link rel="stylesheet" href="lib/css/nivo-slider.css">
<link rel="stylesheet" href="lib/css/preview.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css1/responsive.css">
<!-- modernizr js
============================================ -->
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<?php include_once('includes/header.php'); ?>
<!-- page title area start -->
<div class="page-title-area overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- page title start -->
<div class="page-title">
<h2>about us</h2>
</div>
<!-- page title end -->
<!-- page title menu start -->
<div class="page-title-menu">
<ul>
<li><a href="index.php">Home</a> <span> / </span> </li>
<li><a href="about-us.php">About us</a></li>
</ul>
</div>
<!-- page title menu end -->
</div>
</div>
</div>
</div>
<!-- page title area end -->
<!-- about us area start -->
<div class="about-us-area section-padding2">
<div class="container">
<div class="row">
<div class="col-md-6">
<!-- section title start -->
<div class="section-heading">
<h2>About <span> Us</span></h2>
</div>
<!-- section title end -->
<!-- about content start -->
<?php
$sql = "SELECT * from tblpage where PageType='aboutus'";
$query = $dbh->prepare($sql);
$query->execute();
$results = $query->fetchAll(PDO::FETCH_OBJ);
$cnt = 1;
if ($query->rowCount() > 0) {
foreach ($results as $row) { ?>
<div class="about-us-info">
<p><?php echo htmlentities($row->PageDescription); ?></p>
<?php $cnt = $cnt + 1;
}
} ?>
<!-- about social start -->
<div class="about-social">
<ul>
<li><a href="#"> <i class="fa fa-facebook"></i> </a></li>
<li><a href="#"> <i class="fa fa-google-plus"></i> </a></li>
<li><a href="#"> <i class="fa fa-twitter"></i> </a></li>
<li><a href="#"> <i class="fa fa-instagram"></i> </a></li>
<li><a href="#"> <i class="fa fa-pinterest-p"></i> </a></li>
</ul>
</div>
<!-- about social end -->
</div>
<!-- about content end -->
</div>
<div class="col-md-6 hidden-xs">
<!-- about us img start -->
<div class="about-us-img">
<img src="img1/about/tow-truck-federal-way-2.jpg" alt="">
</div>
<!-- about us img end -->
</div>
</div>
</div>
</div>
<!-- about us area end -->
<div class="quick-book-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="book-now">
<div class="display-table">
<div class="display-table-cell">
<!-- book now content start -->
<div class="book-now-title">
<h2>Send Request</h2>
<a href="booking-request.php" class="book-now-btn"> <i class="icofont icofont-long-arrow-right"></i> BOOK NOW</a>
</div>
<!-- book now content end -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- quick book area start -->
<?php include_once('includes/footer.php'); ?>
<!-- ============== All JS ================ -->
<!-- jquery js
=========================================== -->
<script src="js/vendor/jquery-1.12.0.min.js"></script>
<!-- bootstrap js
=========================================== -->
<script src="js/bootstrap.min.js"></script>
<!-- meanmenu js
=========================================== -->
<script src="js/jquery.meanmenu.js"></script>
<!-- scrollUp js
=========================================== -->
<script src="js/jquery.scrollUp.min.js"></script>
<!-- wow js
=========================================== -->
<script src="js/wow.min.js"></script>
<!-- owl.carousel js
=========================================== -->
<script src="js/owl.carousel.min.js"></script>
<!-- change-text js
=========================================== -->
<script src="js/change-text.js"></script>
<!-- YTPlayer js
=========================================== -->
<script src="js/jquery.mb.YTPlayer.min.js"></script>
<!-- textillate js
=========================================== -->
<script src="js/jquery.lettering.js"></script>
<script src="js/jquery.textillate.js"></script>
<!-- nivo.slider js
=========================================== -->
<script src="lib/js/jquery.nivo.slider.js"></script>
<script src="lib/home.js"></script>
<!-- plugins js
=========================================== -->
<script src="js/plugins.js"></script>
<!-- main js
=========================================== -->
<script src="js/main.js"></script>
</body>
</html>