-
Notifications
You must be signed in to change notification settings - Fork 215
/
book_condition.html
209 lines (197 loc) · 6.83 KB
/
book_condition.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booking Conditions</title>
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f7fc;
margin: 0;
padding: 20px;
color: #333;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
.box {
background-color: #eaf4ff;
border-left: 5px solid #0073e6;
border-radius: 5px;
padding: 15px;
margin-bottom: 15px;
transition: 0.3s;
}
.box:hover {
background-color: #d0e9ff;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.box h2 {
font-size: 1.4em;
color: #00509e;
}
.box p {
font-size: 1em;
color: #555;
}
footer {
background-color: #1e2a38;
color: #b5fdf4;
padding: 40px 20px;
font-size: 14px;
}
.footer-container {
max-width: 1000px;
margin: auto;
text-align: center;
}
.footer-logo {
width: 150px;
margin-bottom: 10px;
}
.social-icons a {
color: #b5fdf4;
font-size: 24px;
margin: 0 8px;
text-decoration: none;
}
.social-icons a:hover {
color: #ffffff;
}
.footer-links {
display: flex;
justify-content: space-around;
margin-top: 20px;
flex-wrap: wrap;
}
.footer-column {
width: 45%;
margin-bottom: 20px;
}
.footer-column h4 {
font-size: 1.1em;
color: #dcfffa;
margin-bottom: 10px;
}
.footer-column ul {
list-style-type: none;
padding: 0;
}
.footer-column ul li {
margin: 5px 0;
}
.footer-column ul li a {
color: #b5fdf4;
text-decoration: none;
transition: color 0.3s;
}
.footer-column ul li a:hover {
color: #ffffff;
}
.footer-bottom {
border-top: 1px solid #3a4a5a;
padding-top: 15px;
margin-top: 20px;
text-align: center;
}
.footer-bottom ul {
list-style: none;
padding: 0;
margin: 10px 0;
}
.footer-bottom ul li {
display: inline;
margin: 0 8px;
}
.footer-bottom ul li a {
color: #b5fdf4;
text-decoration: none;
}
.footer-bottom ul li a:hover {
color: #ffffff;
}
/* Responsive styling */
@media (max-width: 768px) {
.footer-column {
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Booking Conditions</h1>
<!-- Booking conditions content sections -->
<div class="box">
<h2>General Terms</h2>
<p>When using our online ticket booking system, you agree to the terms and conditions outlined below. The term “ticket” refers to any pass purchased for events, services, or transportation.</p>
</div>
<div class="box">
<h2>Payment and Confirmation</h2>
<p>All payments must be completed at the time of booking. Upon successful payment, you will receive a confirmation email with your ticket details. Please check your email spam folder if you do not see this.</p>
</div>
<div class="box">
<h2>Cancellations and Refunds</h2>
<p>Cancellations may be requested through our Help Center. Refund eligibility depends on the terms of the purchased ticket and any third-party provider’s policies.</p>
</div>
<div class="box">
<h2>Privacy and Data Protection</h2>
<p>Your personal data is protected under our privacy policy. We may share your information only with necessary third parties involved in processing your booking.</p>
</div>
</div>
<footer class="footer-container">
<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:</p>
<div class="social-icons">
<a href="https://www.facebook.com" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.twitter.com" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://www.youtube.com" aria-label="YouTube"><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="ModernSlaveryAct.html">Modern Slavery Act</a></li>
<li><a href="terms.html">Terms Of Use</a></li>
</ul>
</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="#">Top Hotels</a></li>
</ul>
</div>
</footer>
</body>
</html>