-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
674 lines (617 loc) · 32.8 KB
/
Copy pathindex.html
File metadata and controls
674 lines (617 loc) · 32.8 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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
<!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>
<!-- About, Services sections omitted for brevity -->
<!-- About Start -->
<div class="container-fluid about py-5">
<div class="container py-5">
<div class="row g-5 align-items-center">
<div class="col-lg-5">
<div class="h-100" style="border: 50px solid transparent #13357B transparent #13357B;">
<img src="img/PLANE3.png" class="img-fluid w-100 h-100" alt="">
</div>
</div>
<div class="col-lg-7" style="background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url(img/about-img-1.png);">
<h5 class="section-about-title pe-3">About Us</h5>
<h1 class="mb-4">Welcome to <span class="text-primary">EuroVoyages</span></h1>
<p class="mb-4">At Euro Voyages, we believe that every journey should be more than just travel — it should be an experience to remember. Based in Cameroon and Canada, we are dedicated to helping travelers explore the world with comfort, safety, and style. With over 20 years of experience in the industry, we have built a reputation for excellence and trust. Whether you are planning a business trip, a family vacation, or a solo adventure, our team is here to guide you every step of the way. From booking airline tickets and hotels to organizing tours and providing travel insurance, we offer complete solutions tailored to your needs and budget. As an IATA-accredited travel agency, we work closely with leading airlines, hotels, and tour operators to ensure you get the best value and a smooth travel experience. Our commitment is to provide personalized service, reliable support, and unforgettable journeys that turn your travel dreams into reality. ✨ EuroVoyages — Your destination, our passion.</p>
<div class="row gy-2 gx-4 mb-4">
<div class="col-sm-6"><p class="mb-0"><i class="fa fa-arrow-right text-primary me-2"></i>Airline ticket sales</p></div>
<div class="col-sm-6"><p class="mb-0"><i class="fa fa-arrow-right text-primary me-2"></i>Travel consulting</p></div>
<div class="col-sm-6"><p class="mb-0"><i class="fa fa-arrow-right text-primary me-2"></i>Hotel reservations</p></div>
<div class="col-sm-6"><p class="mb-0"><i class="fa fa-arrow-right text-primary me-2"></i>Travel insurance</p></div>
<div class="col-sm-6"><p class="mb-0"><i class="fa fa-arrow-right text-primary me-2"></i>Automobile insurance</p></div>
<div class="col-sm-6"><p class="mb-0"><i class="fa fa-arrow-right text-primary me-2"></i>Health insurance</p></div>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Services Start -->
<div class="container-fluid py-5" id="services">
<div class="container">
<div class="text-center mb-5">
<h5 class="text-primary text-uppercase">Our Services</h5>
<h1 class="display-5">What We Offer</h1>
</div>
<div class="row g-4">
<div class="col-lg-4 col-md-6 text-center">
<div class="service-item p-4 border rounded shadow-sm h-100">
<i class="fas fa-plane fa-3x text-primary mb-3"></i>
<h4>Airline Ticket Sales</h4>
<p>Book flights with ease through trusted airline partners worldwide.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-item p-4 border rounded shadow-sm h-100">
<i class="fas fa-hotel fa-3x text-primary mb-3"></i>
<h4>Hotel Reservations</h4>
<p>Reserve your stay at top hotels, tailored to your budget and preferences.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-item p-4 border rounded shadow-sm h-100">
<i class="fas fa-shield-alt fa-3x text-primary mb-3"></i>
<h4>Travel Insurance</h4>
<p>Stay protected during your trips with comprehensive travel insurance plans.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-item p-4 border rounded shadow-sm h-100">
<i class="fas fa-car fa-3x text-primary mb-3"></i>
<h4>Automobile Insurance</h4>
<p>Get reliable car insurance coverage for peace of mind on the road.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-item p-4 border rounded shadow-sm h-100">
<i class="fas fa-heartbeat fa-3x text-primary mb-3"></i>
<h4>Health Insurance</h4>
<p>Protect yourself and your family with tailored health insurance plans.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 text-center">
<div class="service-item p-4 border rounded shadow-sm h-100">
<i class="fas fa-globe fa-3x text-primary mb-3"></i>
<h4>Travel Consulting</h4>
<p>Receive expert guidance to plan your perfect trip, from start to finish.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Services End -->
<!-- Accordion Locations -->
<div class="container py-5">
<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>
<!-- Contact Form -->
<body>
<div class="container">
<!-- Contact Form Section -->
<div class="contact-form">
<h2>Get an Enquiry</h2>
<form action="https://formsubmit.co/mousbi829@gmail.com" method="POST">
<!-- hidden settings -->
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_next" value="https://yourwebsite.com/thank-you.html">
<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">
<option value="">Select a service</option>
<option value="airline">Airline Ticket</option>
<option value="hotel">Hotel Booking</option>
<option value="tour">Travel Consulting</option>
<option value="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>
</div>
<!-- Testimonial Start -->
<div class="container-fluid testimonial py-5">
<div class="container py-5">
<div class="mx-auto text-center mb-5" style="max-width: 900px;">
<h5 class="section-title px-3">Testimonial</h5>
<h1 class="mb-0">Our Clients Say!!!</h1>
</div>
<div class="testimonial-carousel owl-carousel">
<div class="testimonial-item text-center rounded pb-4">
<div class="testimonial-comment bg-light rounded p-4">
<p class="text-center mb-5">"I loved how smooth and stress-free my vacation was. EuroVoyages took care of everything perfectly."</p>
</div>
<div class="testimonial-img p-1">
<img src="img/T4.jpeg" class="img-fluid rounded-circle" alt="CHRIST FRANCIS">
</div>
<div style="margin-top: -35px;">
<h5 class="mb-0">CHRIST FRANCIS</h5>
<p class="mb-0">DOUALA, CAMEROON</p>
<div class="d-flex justify-content-center">
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
</div>
</div>
</div>
<div class="testimonial-item text-center rounded pb-4">
<div class="testimonial-comment bg-light rounded p-4">
<p class="text-center mb-5">"Booking with EuroVoyages was simple, and the trip exceeded my expectations. Highly recommended!"</p>
</div>
<div class="testimonial-img p-1">
<img src="img/T3.jpeg" class="img-fluid rounded-circle" alt="MOUSTAPHA SIDI">
</div>
<div style="margin-top: -35px;">
<h5 class="mb-0">MOUSTAPHA SIDI</h5>
<p class="mb-0">CENTRE, CAMEROON</p>
<div class="d-flex justify-content-center">
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
</div>
</div>
</div>
<div class="testimonial-item text-center rounded pb-4">
<div class="testimonial-comment bg-light rounded p-4">
<p class="text-center mb-5">"Great service and friendly staff. I really enjoyed my holiday thanks to EuroVoyages."</p>
</div>
<div class="testimonial-img p-1">
<img src="img/T2.jpeg" class="img-fluid rounded-circle" alt="ABDOU KAMAYA">
</div>
<div style="margin-top: -35px;">
<h5 class="mb-0">ABDOU KAMAYA</h5>
<p class="mb-0">GAROUA, CAMEROON</p>
<div class="d-flex justify-content-center">
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
</div>
</div>
</div>
<div class="testimonial-item text-center rounded pb-4">
<div class="testimonial-comment bg-light rounded p-4">
<p class="text-center mb-5">"EuroVoyages made my trip amazing! Everything was organized, and I didn’t have to worry about a thing."</p>
</div>
<div class="testimonial-img p-1">
<img src="img/T1.jpeg" class="img-fluid rounded-circle" alt="HABSATOU KAIDI">
</div>
<div style="margin-top: -35px;">
<h5 class="mb-0">HABSATOU KAIDI</h5>
<p class="mb-0">MONTREAL, CANADA</p>
<div class="d-flex justify-content-center">
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
<i class="fas fa-star text-primary"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial 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</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". ***/-->
Designed By AMILICONI 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>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script>
// Spinner
var spinner = document.getElementById('spinner');
window.addEventListener('load', function () { spinner.classList.remove('show'); });
// Accordion (supports nested accordions)
const accordions = document.querySelectorAll('.accordion');
accordions.forEach(acc => {
acc.addEventListener('click', function() {
const panel = this.nextElementSibling;
if (!panel) return;
panel.style.display = panel.style.display === 'block' ? 'none' : 'block';
const arrow = this.querySelector('span');
if (arrow) arrow.innerHTML = panel.style.display === 'block' ? '▲' : '▼';
});
});
</script>
</body>
</html>