-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutUs.php
193 lines (168 loc) · 5.82 KB
/
aboutUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
background-image: url('images/aboutUsbg.jpg');
background-size: cover;
background-position: center;
}
.containerAbtMain {
width: 80%;
/* height: 80vh; */
background-color: #251f1f;
background-color: rgba(255, 255, 255, 0);
z-index: 2;
margin: 50px auto;
/* position: static; */
}
.top {
color: white;
margin: auto;
width: fit-content;
padding: 20px;
}
.line {
background-color: white;
width: 90%;
height: 2px;
margin: auto;
}
.half1,
.half2 {
width: 40%;
/* border: 2px solid white; */
height: 400px;
color: white;
}
.content {
display: flex;
justify-content: center;
margin: 20px;
}
.headCont {
margin: auto;
width: fit-content;
}
.para1,
.para2 {
margin: 20px;
}
.imgPlane {
width: 100%;
height: 100%;
object-fit: cover;
margin: 20px;
margin-left: 20px;
border-radius: 50%;
border: 2px solid white;
}
.navCont {
width: 100%;
;
height: 100px;
}
.contentVast {
color: white;
}
.common1 {
margin: 20px;
}
.foot {
clear: both;
text-align: center;
background-color: #333;
color: white;
padding: 10px;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div class="navCont">
<?php
include 'navBar.php';
?>
</div>
<div class="containerAbtMain">
<div class="top">
<h1>ABOUT US</h1>
</div>
<div class="line">
</div>
<div class="content">
<div class="half1">
<h3 class="headCont">Our Story</h3>
<p class="para1">
At Sahil Tours, we are passionate about creating unforgettable travel experiences for our clients.
Whether you're dreaming of a relaxing beach vacation, an adventurous trek through the mountains, or
an immersive cultural journey, we're here to turn your travel dreams into reality.
</p>
<p class="para2">
<strong>Our Mission:</strong><br>
Our mission is to provide exceptional travel services with a personal touch. We believe that every
journey should be memorable, and we strive to exceed our clients' expectations by offering tailored
itineraries, expert advice, and attentive customer service.
</p>
</div>
<div class="half2">
<img class="imgPlane" src="images/about_Us_content.jpg" alt="">
</div>
</div>
<div class="contentVast">
<p>
<h3>Why Choose Sahil Tours?</h3>
<li class="common1"><strong>Personalized Service:</strong> Our experienced travel experts work closely with
each client
to understand
their preferences and create customized travel plans.</li>
<li class="common1"><strong>Expert Advice:</strong> From destination recommendations to travel tips, our
team
provides
expert advice to
ensure a smooth and enjoyable travel experience.</li>
<li class="common1"><strong>Seamless Planning:</strong> We take care of all the details, including flight
bookings,
accommodation
reservations, transportation, and tour arrangements, so you can relax and focus on making memories.
</li>
<li class="common1"><strong>24/7 Support:<strong> Our dedicated support team is available around the clock
to
assist you
during your
travels and address any concerns or questions you may have.</li>
</p>
<p>
<h3>Our Values</h3>
<li class="common1"><strong>Customer Satisfaction:</strong> We prioritize the satisfaction and happiness of
our clients,
striving to exceed their expectations at every step of their journey.</li>
<li class="common1" <strong>Integrity:<strong> We operate with honesty, transparency, and integrity,
ensuring
that our
clients receive accurate information and reliable services.</li>
<li class="common1"><strong>Passion for Travel:</strong> Our team shares a passion for travel and adventure,
and we are
committed to sharing that passion with our clients by creating unforgettable travel experiences.</li>
<li class="common1"><strong>Community Engagement:</strong> We are dedicated to supporting local communities
and promoting
sustainable tourism practices that benefit both travelers and destinations.</li>
</p>
</div>
</div>
<div class="foot">
<?php include 'footer.html' ?>
</div>
</body>
</html>