forked from ankit071105/Ticket-Booking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
386 lines (327 loc) · 11.7 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.navbar {
background-color: #1f2937;
color: white;
padding: 15px 20px;
justify-content: space-between;
align-items: center;
position: sticky;
display: flex;
top: 0;
z-index: 1000;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navbar .logo {
font-size: 28px;
font-weight: bold;
color: #12e9cc;
display: flex;
flex-wrap: wrap;
}
.logo img {
width: 40px;
height: 40px;
margin-right: 10px;
border: none;
border-radius: 100%;
}
.contact-section {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
background-color: #f5f5f5;
}
.contact-container {
display: flex;
width: 100%;
max-width: 1200px;
justify-content: space-between;
}
.contact-details,
.contact-form {
flex: 1;
margin: 20px;
}
.contact-details h1 {
margin-bottom: 15px;
font-size: 50px;
}
.contact-details p {
margin-bottom: 20px;
font-size: 16px;
}
.contact-boxes {
display: flex;
gap: 20px;
border-radius: 10px;
}
.contact-box {
text-align: center;
}
.contact-box a:hover {
color: blue;
}
.contact-box img {
height: 100px;
width: 100px;
margin: 0 auto;
}
.contact-box h4 {
margin: 10px 0;
}
.contact-form form {
display: flex;
flex-direction: column;
gap: 15px;
}
.contact-form input,
.contact-form textarea {
padding: 10px;
font-size: 16px;
border: 2px solid #008000;
border-radius: 4px;
}
.contact-form button {
padding: 10px;
font-size: 16px;
background-color: #008000;
color: white;
border: none;
cursor: pointer;
border-radius: 4px;
}
.contact-form button:hover {
background-color: #006600;
}
.map-container {
margin-top: 20px;
}
footer {
background-color: #1f2937;
color: white;
text-align: center;
padding: 20px;
margin-top: 50px;
position: relative;
width: 100%;
bottom: 0;
font-size: 1rem;
}
.social-icons a {
color: #00bfa6;
font-size: 20px;
display: inline-block;
margin: 5px;
}
.footer-logo-section {
margin-bottom: 20px;
justify-items: center;
margin: 0 auto;
}
.footer a {
color: #00bfa6;
text-decoration: none;
justify-content: space-between;
}
.footer a:hover {
color: #00a690;
}
.footer-top {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px 0;
}
.footer-logo {
max-width: 70px;
max-height: 70px;
}
.footer-links {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 auto;
}
.footer-column {
flex: 1;
min-width: 200px;
padding: 20px;
margin: 10px;
font-size: x-small;
}
.footer-column h4 {
margin-bottom: 10px;
color: #12e9cc;
font-size: small;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-bottom {
border-top: 1px solid #333;
padding: 10px 0;
color: #12e9cc;
}
.footer-bottom ul {
list-style: none;
padding: 0;
margin: 10px;
display: flex;
justify-content: center;
}
.footer-bottom li {
margin: 0 15px;
}
</style>
</head>
<body>
<nav class="navbar">
<div id="logo-href">
<div class="logo"><img src="images/4.jpeg" alt="Ticket Booking Logo" class="logo-image">Ticket Booking</div>
</div>
</nav>
<!-- Contact Us Section -->
<section class="contact-section">
<div class="contact-container">
<!-- Contact Information -->
<div class="contact-details">
<h1>Contact Us:</h1>
<p>We value your feedback! We'd love to hear from you! For inquiries, feedback, or support, please reach
out. Your insights help us improve your experience.</p>
<div class="contact-boxes">
<div class="contact-box">
<img src="location.png" alt="Location Icon">
<h4>Localisation</h4>
<p>ABC colony, Bangalore Pin: 76896</p>
</div>
<div class=" contact-box">
<img src="call.png" alt="Phone Icon">
<h4>Phone No</h4>
<a href="tel:+91 9685478526">+91 9685478526</a>
</div>
</div>
</div>
<!-- Contact Form -->
<div class="contact-form">
<form id="contactForm" onsubmit="handleSubmit(event)">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Your message here..." required></textarea>
<button type="submit">Submit</button>
</form>
</div>
</div>
</section>
<section class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d126915.40242030277!2d85.7892607!3d20.2498709!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a19a7a3b9692fff%3A0x87cd0a356bbc39ce!2sITER%2C%20Siksha%20'O'%20Anusandhan!5e0!3m2!1sen!2sin!4v1689514124518!5m2!1sen!2sin"
width="100%" height="450" allowfullscreen loading="lazy"></iframe>
</section>
<script>
function handleSubmit(event) {
event.preventDefault(); // Prevent form submission to server
// Collect form data
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const message = document.getElementById('message').value;
// Simple validation (you can expand this)
if (name && email && message) {
alert(`Thank you, ${name}! Your message has been received.`);
document.getElementById('contactForm').reset(); // Reset the form
} else {
alert('Please fill in all the fields.');
}
}
</script>
<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="https://www.facebook.com" target="_blank" aria-label="Facebook"><i
class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com" target="_blank" aria-label="Instagram"><i
class="fab fa-instagram"></i></a>
<a href="https://www.twitter.com" target="_blank" aria-label="Twitter"><i
class="fab fa-x-twitter"></i></a>
<a href="https://www.linkedin.com" target="_blank" aria-label="LinkedIn"><i
class="fab fa-linkedin"></i></a>
<a href="https://www.youtube.com" target="_blank" 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 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="fcdoTravel.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">
<hr>
<ul>
<li><a href="#">Holiday Type</a></li>
<li><a href="#">Holiday Deals</a></li>
<li><a href="#">Popular Countries</a></li>
<li><a href="#">Top Hotels</a></li>
</ul>
</div>
</footer>
</body>
</html>