-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
591 lines (542 loc) · 25.5 KB
/
Copy pathcontact.html
File metadata and controls
591 lines (542 loc) · 25.5 KB
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>EuroVoyages</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fonts & Icons -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@500;600&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
<link rel="icon" href="img/logo_edited.png" type="image/png">
<!-- Libraries -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<style>
/* Accordion */
.accordion {
background-color: #f1f1f1;
color: #444;
cursor: pointer;
padding: 15px 20px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.3s;
font-weight: bold;
margin-bottom: 2px;
display: flex;
justify-content: space-between;
align-items: center;
}
.accordion:hover { background-color: #ddd; }
.panel {
padding: 0 20px;
display: none;
background-color: white;
overflow: hidden;
margin-bottom: 5px;
}
.panel a {
display: block;
padding: 10px 0;
color: #007bff;
text-decoration: none;
}
.panel a:hover { text-decoration: underline; }
/* Contact form */
.contact-form {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
max-width: 600px;
margin: auto;
}
.contact-form h2 { margin-top:0; color:#00008b; }
.contact-form label { display:block; margin-bottom:10px; font-weight:500; }
.contact-form input, .contact-form select, .contact-form textarea {
width:100%; padding:10px; margin-top:5px; margin-bottom:15px;
border-radius:4px; border:1px solid #ccc;
}
.contact-form button {
background:#f36c21; color:#fff; padding:12px 20px;
border:none; border-radius:5px; cursor:pointer; font-size:16px;
}
.contact-form button:hover { background:#00008b; }
</style>
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Navbar & Hero -->
<div class="container-fluid position-relative p-0">
<nav class="navbar navbar-expand-lg navbar-light px-4 px-lg-5 py-3 py-lg-0">
<a href="#" class="navbar-brand p-0"><h1 class="m-0">EUROVOYAGES</h1></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto py-0">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="services.html" class="nav-item nav-link">Services</a>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
<a href="https://wa.link/uppzf6" class="btn btn-primary rounded-pill py-2 px-4 ms-lg-4">Book Now</a>
</div>
</nav>
<!-- Carousel Start -->
<div class="carousel-header">
<div id="carouselId" class="carousel slide" data-bs-ride="carousel">
<ol class="carousel-indicators">
<li data-bs-target="#carouselId" data-bs-slide-to="0" class="active"></li>
<li data-bs-target="#carouselId" data-bs-slide-to="1"></li>
<li data-bs-target="#carouselId" data-bs-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src="img/PLANE1.jpg" class="img-fluid" alt="Image">
<div class="carousel-caption">
<div class="p-3" style="max-width: 900px;">
<h4 class="text-white text-uppercase fw-bold mb-4" style="letter-spacing: 3px;">Explore The World</h4>
<h1 class="display-2 text-capitalize text-white mb-4">Let's Explore The World Together!</h1>
<p class="mb-5 fs-5">Join us on unforgettable journeys. From booking your flights to planning your dream vacation, we’re here to make travel easy and exciting.</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="img/AXA2.jpg" class="img-fluid" alt="Image">
<div class="carousel-caption">
<div class="p-3" style="max-width: 900px;">
<h4 class="text-white text-uppercase fw-bold mb-4" style="letter-spacing: 3px;">Secure Your Future with AXA</h4>
<h1 class="display-2 text-capitalize text-white mb-4">Smart Insurance, Peace of Mind</h1>
<p class="mb-5 fs-5">Smart Insurance, Peace of Mind Life is full of surprises—make sure you’re ready for them. From travel and health to car and home insurance, AXA provides flexible, reliable, and affordable coverage tailored just for you.</p>
</div>
</div>
</div>
<div class="carousel-item">
<img src="img/gallery-1.jpg" class="img-fluid" alt="Image">
<div class="carousel-caption">
<div class="p-3" style="max-width: 900px;">
<h4 class="text-white text-uppercase fw-bold mb-4" style="letter-spacing: 3px;">Explore The World</h4>
<h1 class="display-2 text-capitalize text-white mb-4">You Like To Go?</h1>
<p class="mb-5 fs-5">Whether you dream of sandy beaches, vibrant cities, or cultural adventures, we’ll match you with the tour that’s right for you. Tailor-made, affordable, and stress-free.</p>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselId" data-bs-slide="prev">
<span class="carousel-control-prev-icon btn bg-primary" aria-hidden="false"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselId" data-bs-slide="next">
<span class="carousel-control-next-icon btn bg-primary" aria-hidden="false"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- Carousel End -->
</div>
<!-- LOCATION START -->
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.accordion {
background-color: #fff;
color: #000;
cursor: pointer;
padding: 15px;
width: 100%;
text-align: left;
border: 1px solid #ddd;
margin-bottom: 5px;
transition: 0.3s;
display: flex;
justify-content: space-between;
align-items: center;
}
.accordion:hover {
background-color: #f1f1f1;
}
.panel {
padding: 0 15px;
display: none;
background-color: #f9f9f9;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.panel a {
display: block;
padding: 10px 0;
color: #007700;
text-decoration: none;
}
.panel a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- -->
<h2>OUR AGENCIES</h2>
<div class="accordion">DOUALA <span>▼</span></div>
<div class="panel">
<div class="accordion">DOUALA-AKWA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237676998152?text=Hello%20Euro%20Voyages" target="_blank">Order via WhatsApp</a>
<a href="mailto:melvineallo98@gmail.com?subject=Product%20Order&body=Hello%20Euro%20Voyages">Send us an email</a>
</div> <div class="accordion">DOUALA-BONABERI <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237676521015?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mildredngwekongazise@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">DOUALA-BONAMOUSSADI <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237678577570?text=Hello%20Euro%20Voyages" target="_blank">Order via WhatsApp</a>
<a href="mailto:melvineallo98@gmail.com?subject=Product%20Order&body=Hello%20Euro%20Voyages">Send us an email</a>
</div><div class="accordion">DOUALA-BONANJO PJ <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237675531466?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:vivianne@yahoo.co.uk?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div><div class="accordion">DOUALA-BONANJO CRTV <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237651150164?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mleatietame@yahoo.fr?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
</div><div class="accordion">YAOUNDE<span>▼</span></div>
<div class="panel">
<div class="accordion">YAOUNDE-AMBASSADE DE FRANCE <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237675981893?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:melvineallo98@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div><div class="accordion">YAOUNDE-CAPITOLE <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237675483006?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="https://wa.me/237691112386?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:eurovges.financialsvce@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div><div class="accordion">YAOUNDE-TROPICANA<span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237654292488?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:frank_livia@yahoo.fr?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a></div>
<div class="accordion">YAOUNDE-TEXACO OMNISPORT <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237678433655?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="https://wa.me/2376676969594?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:euro.mfandena@@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">YAOUNDE-BIYEMASSI <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237651846778?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:stellamisodi@yahoo.ca?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">YAOUNDE-EMANA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237696233628?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:kamayaabdou888@gmail.com?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">YAOUNDE-NKLONDA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237693327820?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:nhabsatou@yahoo.fr?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">YAOUNDE-BRASSERIE <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237696065818?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
</div>
</div><div class="accordion">GAROUA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237670527108?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:melvineallo98@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">MAROUA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237695525292?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">NGAOUNDERE <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237679850498?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:melvineallo98@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div><div class="accordion">BAFOUSSAM <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237657517612?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">KRIBI <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237699361354?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">BERTOUA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237699725363?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">BAMENDA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237677457090?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:therese.shiri@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">LIMBE<span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237675501152?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
<div class="accordion">CANADA <span>▼</span></div>
<div class="panel">
<a href="https://wa.me/237656529717?text=Hello%20Euro%20Voyages%2C%20I%20would%20like%20to%20order%20a%20product" target="_blank">
Order via WhatsApp
</a>
<a href="mailto:mousbi829@gmail?subject=Product%20Order&body=Hello%20Euro%20Voyages,%0AI%20would%20like%20to%20order%20the%20following%20product:">
Send us an email
</a>
</div>
</div>
<script>
const accordions = document.querySelectorAll('.accordion');
accordions.forEach(acc => {
acc.addEventListener('click', () => {
const panel = acc.nextElementSibling;
const arrow = acc.querySelector('span');
if (panel.style.display === "block") {
panel.style.display = "none";
arrow.innerHTML = "▼";
} else {
panel.style.display = "block";
arrow.innerHTML = "▲";
}
});
});
</script>
</body>
</html>
<!-- LOCATION End -->
<!-- Contact Start -->
<div class="container py-5">
<div class="row g-5 align-items-center">
<div class="col-lg-6">
<h5 class="section-booking-title pe-3"></h5>
<h1 class="text-white mb-4"></h1>
<p class="text-white mb-4">
</p>
</div>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Get an Enquiry</title>
<style>
body { font-family: Arial, sans-serif; margin:0; padding:0; background:#f9f9f9; color:#333; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; flex-wrap: wrap; gap: 40px; }
.contact-info, .contact-form { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); flex:1; min-width:300px; }
h2 { margin-top:0; color:#00008b; }
.info-box { display: flex; align-items: center; margin-bottom: 20px; }
.info-box i { font-size: 30px; color: #f36c21; margin-right: 15px; }
.info-box div { line-height: 1.4; }
.info-box div strong { display:block; margin-bottom:4px; }
form label { display:block; margin-bottom:10px; font-weight:500; }
form input, form select, form textarea { width:100%; padding:10px; margin-top:5px; margin-bottom:15px; border-radius:4px; border:1px solid #ccc; }
form button { background:#f36c21; color:#fff; padding:12px 20px; border:none; border-radius:5px; cursor:pointer; font-size:16px; }
form button:hover { background:#00008b; }
</style>
<!-- You can use fontawesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
</head>
<body>
<div class="container">
<!-- Contact Form Section -->
<div class="contact-form">
<h2>Get an Enquiry</h2>
<form id="waForm">
<label>Full Name*
<input type="text" name="fullname" placeholder="Full Name" required>
</label>
<label>Phone Number*
<input type="tel" name="phone" placeholder="+237 6XX XXX XXX" required>
</label>
<label>Email Id*
<input type="email" name="email" placeholder="Email Id" required>
</label>
<label>Products or Services
<select name="service" required>
<option value="">Select a service</option>
<option value="Airline Ticket">Airline Ticket</option>
<option value="Hotel Booking">Hotel Booking</option>
<option value="Travel Consulting">Travel Consulting</option>
<option value="Travel Insurance">Travel Insurance</option>
</select>
</label>
<label>Message
<textarea name="message" rows="5" placeholder="Your Message"></textarea>
</label>
<button type="submit">Submit</button>
</form>
</div>
<script>
// Replace with your WhatsApp number in international format (no + or spaces)
const AGENCY_PHONE = "237651497130"; // Euro Voyages number
document.getElementById("waForm").addEventListener("submit", function (e) {
e.preventDefault();
// Collect form values
const fullname = this.fullname.value.trim();
const phone = this.phone.value.trim();
const email = this.email.value.trim();
const service = this.service.value.trim();
const message = this.message.value.trim();
// Build WhatsApp message
let text = `Hello Euro Voyages,%0A`;
text += `Full Name: ${fullname}%0A`;
text += `Phone: ${phone}%0A`;
text += `Email: ${email}%0A`;
text += `Service: ${service}%0A`;
text += `Message: ${message}`;
// WhatsApp link
const url = `https://wa.me/${AGENCY_PHONE}?text=${text}`;
// Open WhatsApp
window.open(url, "_blank");
});
</script>
</div>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Footer Start -->
<div class="container-fluid footer py-5">
<div class="container py-5">
<div class="row g-5">
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="footer-item d-flex flex-column">
<h4 class="mb-4 text-white"></h4>
<a href=""><i class="fas fa-home me-2"></i> CAMEROON</a>
<a href=""><i class="fas fa-home me-2"></i> CANADA</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Copyright Start -->
<div class="container-fluid copyright text-body py-4">
<div class="container">
<div class="row g-4 align-items-center">
<div class="col-md-6 text-center text-md-end mb-md-0">
<i class="fas fa-copyright me-2"></i><a class="text-white" href="#">Eurovoyages web</a>, All right reserved.
</div>
<div class="col-md-6 text-center text-md-start">
<!--/*** This template is free as long as you keep the below author’s credit link/attribution link/backlink. ***/-->
<!--/*** If you'd like to use the template without the below author’s credit link/attribution link/backlink, ***/-->
<!--/*** you can purchase the Credit Removal License from "https://htmlcodex.com/credit-removal". ***/-->
AMLICONI GROUP <a class="text-white" href="https://htmlcodex.com">HTML Codex</a>
</div>
</div>
</div>
</div>
<!-- Copyright End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary btn-primary-outline-0 btn-md-square back-to-top"><i class="fa fa-arrow-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>