-
Notifications
You must be signed in to change notification settings - Fork 219
/
help.html
396 lines (372 loc) · 12.8 KB
/
help.html
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Help Centre - Ticket Booking</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="stylesheet" href="footer.css">
<style>
.nav-container {
display: flex;
}
</style>
</head>
<body>
<nav class="navbar">
<a href="./index.html" id="logo-href">
<div class="logo-container">
<img
src="images/4.jpeg"
alt="Ticket Booking Logo"
class="logo-image"
/>
<div class="logo">Ticket Booking</div>
</div>
</a>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#queries">Queries</a></li>
</ul>
</nav>
<div class="nav-container">
<div class="menu-toggle">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-links">
<li>
<a href="index.html" class="home-button"
><i class="fas fa-home"></i>HOME</a
>
</li>
<li>
<a href="buy.html"><i class="fas fa-shopping-cart"></i> Buy</a>
</li>
<li>
<a href="sell.html"><i class="fas fa-tag"></i> Sell</a>
</li>
<li>
<a href="#contact"><i class="fas fa-envelope"></i> Contact</a>
</li>
<li>
<a href="contributors.html"
><i class="fas fa-users"></i> Our Contributors</a
>
</li>
<li>
<a href="/client/register.html" class="login-btn"
><i class="fas fa-user"></i
></a>
</li>
</ul>
<button id="darkModeToggle" style="width: 40px; height: 40px">
🌙
</button>
</div>
</nav>
<script>
const darkModeToggle = document.getElementById("darkModeToggle");
const body = document.querySelector("body");
if (darkModeToggle) {
darkModeToggle.addEventListener("click", () => {
document.body.classList.toggle("dark-mode");
if (body.classList.contains("dark-mode")) {
darkModeToggle.innerHTML = "🔆";
} else {
darkModeToggle.innerHTML = "🌙";
}
});
}
// change icon of the dark/light mode
const menuToggle = document.querySelector(".menu-toggle");
const navLinks = document.querySelector(".nav-links");
menuToggle.addEventListener("click", () => {
navLinks.classList.toggle("active");
menuToggle.classList.toggle("active");
// Special effect for hamburger icon
const bars = menuToggle.querySelectorAll(".bar");
bars.forEach((bar, index) => {
if (menuToggle.classList.contains("active")) {
bar.style.transform =
index === 1
? "scale(0)"
: `rotate(${index === 0 ? "45deg" : "-45deg"})`;
} else {
bar.style.transform = "none";
}
});
});
// Close menu when clicking outside
document.addEventListener("click", (event) => {
if (
!navLinks.contains(event.target) &&
!menuToggle.contains(event.target)
) {
navLinks.classList.remove("active");
menuToggle.classList.remove("active");
menuToggle.querySelectorAll(".bar").forEach((bar) => {
bar.style.transform = "none";
});
}
});
</script>
<div class="helpcontainer">
<div id="helpservice-section">
<h2>Help Center</h2>
<p id="para">
Here's a compilation of all the travel queries you may have.
We're pretty sure the answer to your question will be here.
Just in case you don't see it, please use contact us option
mentioned above and we will get back to you for resolution.
</p>
<div class="cards">
<div class="card">
<i class="fa-solid fa-newspaper"></i>
<div class="content">
<h3>What are your terms of use and privacy policy? Where can I read more about it?</h3>
<p>We take the privacy of our users very seriously!</p>
<p>You can view our <a href="privacy.html">Privacy Policy</a> & <a href="terms.html">Terms Of Use</a></p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-compass"></i>
<div class="content">
<h3>Why is Ticket Booking different from other travel booking platforms?</h3>
<p>At Ticket booking, we believe in providing the best travel experience. We partner with multiple travel providers to offer a wide range of routes, schedules, and prices, making travel accessible to everyone. Our team is dedicated to innovation and constantly improving our platform to serve you better.</p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-question"></i>
<div class="content">
<h3>What if I cannot find my question on this list?</h3>
<p>In case you have a specific question not addressed in this section then, please reach out to us by clicking here: <a href="#contact">contact us</a></p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-money-bill"></i>
<div class="content">
<h3>How do I buy my ticket on ixigo?</h3>
<p>You can visit the Ticket <a href="buy.html">buy</a> section to buy your tickets</p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-address-book"></i>
<div class="content">
<h3>How do I Sell my ticket on ixigo?</h3>
<p>you can easily sell your unused tickets. Whether it's for a concert, sports event, or travel, we've got you covered. Simply visit the <a href="sell.html">sell</a> section</p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-gear"></i>
<div class="content">
<h3>Update mobile number/email ID.</h3>
<p>Log in to the website, click on Profile and select Edit/View Profile. You will be able to update your contact details from there.</p>
</div>
</div>
</div>
</div>
</div>
<footer class="footer-container">
<div class="footer-top">
<div class="footer-logo-section">
<a href="#"> <img src="./images/3.jpeg" alt="easyJet holidays logo" class="footer-logo"></a>
<p style="color: #b5fdf4;" >Affordable adventures, unforgettable memories—explore with ease.</p>
<p style="color: #dcfffa;" class="follow-us">FOLLOW US ON HERE:</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#" ><i class="fa-brands fa-x-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="https://www.facebook.com"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com"><i class="fab fa-instagram"></i></a>
<a href="https://www.twitter.com" ><i class="fab fa-x-twitter"></i></a>
<a href="https://www.linkedin.com"><i class="fab fa-linkedin"></i></a>
<a href="https://www.youtube.com"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>HELPFUL LINKS</h4>
<ul>
<li><a href="help.html">Help Centre</a></li>
<li><a href="#">Special Assistance</a></li>
<li><a href="#">Download The App</a></li>
<li><a href="book_condition.html">Booking Conditions</a></li>
</ul>
</div>
<div class="footer-column">
<h4>ABOUT US</h4>
<ul>
<li><a href="#">Media Center</a></li>
<li><a href="#">Investors</a></li>
<li><a href="#">Modern Slavery Act</a></li>
<li><a href="ModernSlaveryAct.html">Modern Slavery Act</a></li>
<li><a href="terms.html">Terms Of Use</a></li>
</ul>
</div>
<div class="footer-column">
<h4>KEEPING SAFE</h4>
<ul>
<li><a href="#">ATOL Protected</a></li>
<li><a href="travelAware.html">Travel Aware</a></li>
<li><a href="travelAware.html">FCDO Travel Advice</a></li>
<li><a href="#">ABTA</a></li>
</ul>
</div>
<div class="footer-column">
<h4>FIND US</h4>
<ul>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="GroupCookieNotice.html">Group Cookie Notice</a></li>
<li><a href="privacy.html">Privacy And Policy</a></li>
<li><a href="sitemap.html">Sitemap</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<ul>
<li><a href="#">Holiday Type</a></li>
<li><a href="#">Holiday Deals</a></li>
<li><a href="#">Popular Counters</a></li>
<!-- <li><a href="#">Flight Only</a></li> -->
<li><a href="#">Top Hotels</a></li>
</ul>
</div>
</footer>
<div class="gtranslate_wrapper"></div>
<script>
window.gtranslateSettings = {
default_language: "en",
detect_browser_language: true,
wrapper_selector: ".gtranslate_wrapper",
};
</script>
<script
src="https://cdn.gtranslate.net/widgets/latest/float.js"
defer
></script>
</body>
</html>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Arial", sans-serif;
line-height: 1.6;
}
:root{
--primery-color:#092143;
--secondary-color:#00bfa6;
}
#helpservice-section{
min-height: 740px ;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 2rem;
}
#helpservice-section h2 {
color: #f0a500;
font-size: 3.5rem;
position: relative;
text-transform: uppercase;
}
#para{
width: 60%;
font-size:1rem ;
text-align: center;
line-height: 1.5rem;
white-space: 1px;
margin-bottom: 40px;
}
.cards{
display: grid ;
grid-template-columns: repeat(3,1fr);
gap: 35px;
z-index: 9;
margin-top: 20px;
}
.cards .card{
height: 400px;
width: 380px;
display: flex;
justify-content: flex-start;
flex-direction: column;
padding: 2% 8%;
background-color: #00bfa6;
position: relative;
border-radius: 10px;
}
.cards .card::before{
position: absolute;
content: " ";
height: 100%;
width: 100%;
top: 0;
left: 0;
border-radius: 10px;
transition: .6s;
z-index: -1;
background-color: var(--primery-color);
}
.cards .card:hover.card::before{
transform: rotate(10deg);
}
.cards .card i{
font-size:1.5rem ;
color: var(--primery-color);
margin-top: 20px;
margin-bottom: 10px;
}
.cards .card h3{
font-size: 1.2rem;
color: white;
margin-bottom: 10px;
}
.cards .card .content p{
font-size: 1rem;
font-weight: 400;
color: white;
}
@media(max-width:1100px){
#helpservice-section h2{
margin-top: 30px;
}
.cards{
grid-template-columns: repeat(1,1fr);
}
#helpservice-section #para{
width: 50%;
}
}
/* @media (max-width: 900px) {
.cards .card{
height: 200px;
width: 300px;
margin: 20px 0 ;
}
} */
</style>