-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravelgide.html
84 lines (81 loc) · 3.36 KB
/
travelgide.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Fly Flusion - Travel Guide</title>
<link rel="stylesheet" href="style.css">
<link href="srcipt.js">
</head>
<body class ="hero-class">
<!-- hero section -->
<header class="hero">
<div class="hero-content">
<h1>Explore the World with Fly Fusion</h1>
<p>Your next adventure starts here</p>
<button class="cta-btn">
<a href="./signup.html">
Start Your Journey
</a></button>
</div>
</header>
<!-- search bar-->
<section class="search-bar">
<input type="text" id="destination-search" placeholder="Seach for destinations or tours...">
<button onclick="searchDestination()">Search</button>
</section>
<!-- featured Destinations -->
<section class="featured-destinations">
<h2>Featured Destinations</h2>
<div class="destination-card">
<img src="./images/iceland.jpg" alt="ice land">
<h3>Iceland</h3>
<p>"A land of majestic waterfalls, striking glaciers, and the enchanting Northern Lights."</p>
<button class="cta-btn">Explore More</button>
</div>
<div class="destination-card">
<img src="./images/korea2.webp" alt="southkorea">
<h3>South Korea</h3>
<p>"South Korea: A vibrant blend of ancient palaces, modern cities, and breathtaking mountain landscapes."</p>
<button class="cta-btn">Explore More</button>
</div>
<div class="destination-card">
<img src="./images/japan.jpg" alt="Tokyo">
<h3>Tokyo</h3>
<p>"Tokyo: A dazzling metropolis where cutting-edge technology meets rich tradition and timeless culture."</p>
<button class="cta-btn">Explore More</button>
</div>
</section>
<!-- Tour Packages -->
<section class="tour-packages">
<h2>Popular Tour Packages</h2>
<div class="package-card">
<h3>European Adventure</h3>
<p>Visit Paris, Rome, and Barcelona in one trip.</p>
<button class="cta-btn">Book Now</button>
</div>
<div class="package-card">
<h3>Tropical Escapes</h3>
<p>Relax and unwind in Bali and Phuket.</p>
<button class="cta-btn">Book Now</button>
</div>
<div class="package-card">
<h3>Asian Discovery</h3>
<p>Explore Tokyo, Kyoto, and Seoul.</p>
<button class="cta-btn">Book Now</button>
</div>
</section>
<section class="deals-banner">
<h2>Travel Deals & Offers</h2>
<p>Exclusive discounts for your next adventure!</p>
<button class=""cta-btn>
<a href="./signup.html">Sign Up for More
</a>
</button>
</section>
<section>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d202405.65365228345!2d126.80932880888535!3d37.56476155040291!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x357ca2012d5c39cf%3A0x7e11eca1405bf29b!2sSeoul%2C%20South%20Korea!5e0!3m2!1sen!2sin!4v1731980177823!5m2!1sen!2sin" width="100%" height="400" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<script src="scripts.js"></script>
</body>
</html>