forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
370 lines (309 loc) · 12.3 KB
/
terms.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Terms of Use - BuddyTrail</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="footer.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4; /* Light background for contrast */
color: #333;
line-height: 1.6;
}
/* Full-width container for page */
.container {
display: flex;
width: 100%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: 8px;
transition: box-shadow 0.3s ease; /* Smooth shadow transition */
}
.container:hover {
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}
/* Table of contents styling */
.toc {
flex-basis: 25%;
background-color: #e9ecef;
padding: 20px;
border-radius: 8px;
margin-right: 20px;
height: fit-content;
position: sticky;
top: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Shadow for TOC */
}
.toc h2 {
font-size: 1.5rem;
color: #004085;
margin-bottom: 15px;
border-bottom: 2px solid #007bff; /* Underline effect */
padding-bottom: 5px;
}
/* TOC links */
.toc ul {
list-style: none;
padding: 0;
}
.toc ul li {
margin-bottom: 10px;
}
.toc ul li a {
text-decoration: none;
color: #007bff;
font-weight: bold;
transition: color 0.3s ease, padding-left 0.2s ease; /* Transition for hover effects */
padding-left: 5px;
}
.toc ul li a:hover {
color: #0056b3; /* Darker blue on hover */
padding-left: 10px; /* Indent effect on hover */
font-weight: bold; /* Keep bold on hover */
}
/* Main content styling */
.main-content {
flex-basis: 75%;
}
h1, h2 {
color: #004085;
}
h1 {
font-size: 2.4rem;
text-align: center;
margin-bottom: 30px;
border-bottom: 3px solid #007bff; /* Enhanced underline */
padding-bottom: 10px;
}
h2 {
font-size: 1.8rem;
margin-top: 40px;
margin-bottom: 20px;
border-bottom: 2px solid #ddd; /* Thicker border for separation */
padding-bottom: 10px;
position: relative;
transition: color 0.3s ease; /* Smooth color transition */
}
h2:hover {
color: #0056b3; /* Change color on hover */
}
/* Paragraph styling */
p {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
transition: color 0.3s ease; /* Smooth color transition */
}
p:hover {
color: #333; /* Darker color on hover */
}
/* List styling */
ul {
margin-left: 20px;
padding-left: 20px;
list-style: disc;
}
li {
margin-bottom: 10px;
}
/* Button styling for links */
a {
color: #007bff;
text-decoration: none;
transition: color 0.3s ease; /* Smooth color transition */
}
a:hover {
color: #0056b3; /* Darker blue on hover */
text-decoration: underline; /* Underline on hover */
}
/* Smooth scrolling for anchor links */
html {
scroll-behavior: smooth;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container {
flex-direction: column;
}
.toc {
margin-bottom: 20px;
margin-right: 0;
width: 100%;
position: relative;
}
.main-content {
width: 100%;
}
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.4rem;
}
p {
font-size: 0.95rem;
}
}
</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>
<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">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="buy.html">Buy Ticket</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="contributor.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>
<button id="darkModeToggle" style="width: 40px; height: 40px;">🌙</button>
</ul>
</div>
</nav>
<div class="container">
<!-- Table of contents on the left side -->
<div class="toc">
<h2>Table of Contents</h2>
<ul>
<li><a href="#section1">1. Acceptance of Terms</a></li>
<li><a href="#section2">2. Modifications to Terms</a></li>
<li><a href="#section3">3. User Responsibilities</a></li>
<li><a href="#section4">4. Intellectual Property</a></li>
<li><a href="#section5">5. User-Generated Content</a></li>
<li><a href="#section6">6. Privacy</a></li>
<li><a href="#section7">7. Limitation of Liability</a></li>
<li><a href="#section8">8. Third-Party Links</a></li>
<li><a href="#section9">9. Termination</a></li>
<li><a href="#section10">10. Governing Law</a></li>
<li><a href="#section11">11. Contact Us</a></li>
</ul>
</div>
<!-- Main content on the right side -->
<div class="main-content">
<h1>BuddyTrail - Terms of Use</h1>
<!-- Terms of Use sections -->
<h2 id="section1">1. Acceptance of Terms</h2>
<p>By accessing and using our website, you agree to comply with and be bound by the following terms and conditions. If you do not agree to these terms, please refrain from using our website.</p>
<h2 id="section2">2. Modifications to Terms</h2>
<p>We reserve the right to modify these terms at any time. Any changes will be effective immediately upon posting on this page. It is your responsibility to review these terms regularly to ensure you are aware of any updates.</p>
<h2 id="section3">3. User Responsibilities</h2>
<p>As a user of our website, you agree not to:</p>
<ul>
<li>Violate any applicable laws or regulations.</li>
<li>Post or transmit any harmful, threatening, or offensive content.</li>
<li>Use the website for unauthorized commercial purposes.</li>
<li>Attempt to gain unauthorized access to any part of the website or its systems.</li>
</ul>
<h2 id="section4">4. Intellectual Property</h2>
<p>All content, trademarks, logos, and intellectual property displayed on this website are the property of [Your Company Name] or its licensors. You may not use, reproduce, or distribute any material without prior written permission.</p>
<h2 id="section5">5. User-Generated Content</h2>
<p>By submitting any content (such as comments, posts, or feedback) to our website, you grant us a non-exclusive, royalty-free, perpetual, and worldwide license to use, modify, and display such content. You are solely responsible for any content you submit, and it must not infringe the rights of any third party.</p>
<h2 id="section6">6. Privacy</h2>
<p>Your use of our website is also governed by our Privacy Policy, which explains how we collect, use, and protect your personal information.</p>
<h2 id="section7">7. Limitation of Liability</h2>
<p>We make no warranties or representations about the accuracy, reliability, or completeness of the website’s content. To the extent permitted by law, we will not be liable for any damages arising from the use or inability to use the website or its services.</p>
<h2 id="section8">8. Third-Party Links</h2>
<p>Our website may contain links to third-party websites. We are not responsible for the content or practices of these websites. Accessing them is at your own risk.</p>
<h2 id="section9">9. Termination</h2>
<p>We reserve the right to terminate or suspend your access to the website at our sole discretion, without prior notice, for any violation of these terms.</p>
<h2 id="section10">10. Governing Law</h2>
<p>These terms are governed by and construed in accordance with the laws of [Country/State]. Any legal disputes arising from these terms will be subject to the exclusive jurisdiction of the courts in [Location].</p>
<h2 id="section11">11. Contact Us</h2>
<p>If you have any questions about these Terms of Use, please contact us at [[email protected]].</p>
</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="#">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 Us</a></li>
<li><a href="#">Group Cookie Notice</a></li>
<li><a href="privacy.html">Privacy And Policy</a></li>
<li><a href="#">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>
</body>
</html>