-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
163 lines (143 loc) · 5.56 KB
/
about.php
File metadata and controls
163 lines (143 loc) · 5.56 KB
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
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
?>
<!doctype html>
<html lang="en">
<head>
<title>তিলোত্তমা | About us</title>
<!-- Template CSS -->
<link rel="stylesheet" href="assets/css/style-starter.css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab:400,700,700i&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body id="home">
<?php include_once('includes/header.php');?>
<script src="assets/js/jquery-3.3.1.min.js"></script> <!-- Common jquery plugin -->
<!--bootstrap working-->
<script src="assets/js/bootstrap.min.js"></script>
<!-- //bootstrap working-->
<!-- disable body scroll which navbar is in active -->
<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>
<!-- disable body scroll which navbar is in active -->
<!-- breadcrumbs -->
<section class="w3l-inner-banner-main">
<div class="about-inner about ">
<div class="container">
<div class="main-titles-head text-center">
<h3 class="header-name ">
About Us
</h3>
</div>
</div>
</div>
<div class="breadcrumbs-sub">
<div class="container">
<ul class="breadcrumbs-custom-path">
<li class="right-side propClone"><a href="index.php" class="">Home <span class="fa fa-angle-right" aria-hidden="true"></span></a> <p></li>
<li class="active ">About</li>
</ul>
</div>
</div>
</div>
</section>
<!-- breadcrumbs //-->
<section class="w3l-content-with-photo-4" id="about">
<div class="content-with-photo4-block ">
<div class="container">
<div class="cwp4-two row">
<div class="cwp4-image col-xl-6">
<img src="assets/images/b2.jpg" alt="product" class="img-responsive about-me">
</div>
<div class="cwp4-text col-xl-6 ">
<div class="posivtion-grid">
<h3 class="">Beauty and success starts here</h3>
<div class="hair-two-colums">
<div class="hair-left">
<h5>
Waxing</h5>
</div>
<div class="hair-left">
<h5>Facial</h5>
</div>
<div class="hair-left">
<h5>Hair makeup</h5>
</div>
<div class="hair-left">
<h5>Massage</h5>
</div>
<div class="hair-left">
<h5>Menicure</h5>
</div>
<div class="hair-left">
<h5>Pedicure</h5>
</div>
<div class="hair-left">
<h5>Hair Cut</h5>
</div>
<div class="hair-left">
<h5>Body Spa</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="w3l-recent-work">
<div class="jst-two-col">
<div class="container">
<div class="row">
<div class="my-bio col-lg-6">
<div class="hair-make">
<?php
$ret=mysqli_query($con,"select * from tblpage where PageType='aboutus' ");
$cnt=1;
while ($row=mysqli_fetch_array($ret)) {
?>
<h5><a href="blog.html"><?php echo $row['PageTitle'];?></a></h5>
<p class="para mt-2"><?php echo $row['PageDescription'];?></p><?php } ?>
</div>
</div>
<div class="col-lg-6 ">
<img src="assets/images/b3.jpg" alt="product" class="img-responsive about-me">
</div>
</div>
</div>
</div>
</section>
<?php include_once('includes/footer.php');?>
<!-- move top -->
<button onclick="topFunction()" id="movetop" title="Go to top">
<span class="fa fa-long-arrow-up"></span>
</button>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- /move top -->
</body>
</html>