-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (145 loc) · 7.84 KB
/
Copy pathindex.html
File metadata and controls
150 lines (145 loc) · 7.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourism Portal</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap"/>
</head>
<body>
<header role="banner">
<div class="container">
<nav role="navigation" aria-label="main navigation">
<h1>Explore World</h1>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#destinations">Destinations</a></li>
<li><a href="#packages">Tours</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#book">Book</a></li>
</ul>
</nav>
</div>
</header>
<section id="home" role="region" aria-label="home section">
<video class="bg-video" src="https://www.pexels.com/download/video/3015510/" autoplay muted loop playsinline></video>
<div class="overlay"></div>
<div class="home-content">
<h2>Welcome to Explore World</h2>
<p>Your gateway to unforgettable travel experiences, starts with us.</p>
<a href="#packages" class="btn" aria-label="Packages">Discover Tours</a>
</div>
</section>
<section id="destinations" class="section" role="region" aria-label="destinations section">
<div class="container">
<h2 id="destinations-heading">Popular Destinations</h2>
<div class="destinations-grid">
<article class="destinations-card">
<img src="https://images.pexels.com/photos/427679/pexels-photo-427679.jpeg" alt="Tower Bridge in London">
<h3>London, UK</h3>
</article>
<article class="destinations-card">
<img src="https://images.pexels.com/photos/597049/paris-france-eiffel-tower-597049.jpeg" alt="Eiffel Tower in Paris">
<h3>Paris, France</h3>
</article>
<article class="destinations-card">
<img src="https://images.pexels.com/photos/2506923/pexels-photo-2506923.jpeg" alt="Tokyo cityscape">
<h3>Tokyo, Japan</h3>
</article>
<article class="destinations-card">
<img src="https://images.pexels.com/photos/290386/pexels-photo-290386.jpeg" alt="Statue of Liberty in New York">
<h3>New York, USA</h3>
</article>
</div>
</div>
</section>
<section id="packages" class="section" role="region" aria-label="tour packages section">
<div class="container">
<h2 id="pack-head">Tour Packages</h2>
<div class="packages-grid" role="listitem">
<article class="package" role="listitem">
<img src="https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg" alt="Beach resort">
<h3>Tropical Paradise</h3>
<p>7 Days in Maldives | From $1200</p>
<button aria-label="Book Tropical Paradise">Book Now</a>
</article>
<article class="package" role="listitem">
<img src="https://images.pexels.com/photos/346885/pexels-photo-346885.jpeg" alt="Mountain hiking">
<h3>Mountain Adventure</h3>
<p>5 Days in the Alps | From $800</p>
<button aria-label="Book Mountain Adventure">Book Now</a>
</article>
<article class="package" role="listitem">
<img src="https://images.pexels.com/photos/21014/pexels-photo.jpg" alt="City tour">
<h3>City Explorer</h3>
<p>4 Days in New York | From $1300</p>
<button aria-label="Book City Explorer">Book Now</a>
</article>
</div>
</div>
</section>
<section id="testimonials" class="section" role="region" aria-label="testimonials section">
<div class="container">
<h2 id="test-head">What Our Travelers Say</h2>
<div class="testimonials-grid" role="list">
<blockquote class="testimonial">
<i class="fa-solid fa-quote-left fa-2x"></i>
<p>"An unforgettable experience! The tour was well organized and the guides were fantastic."</p>
<h4> ~ Sarah L.</h4>
</blockquote>
<blockquote class="testimonial">
<i class="fa-solid fa-quote-left fa-2x"></i>
<p>"The planning was seamless, and all the arrangements were perfect, making the adventure incredibly easy."</p>
<h4> ~ Victor R.</h4>
</blockquote>
<blockquote class="testimonial">
<i class="fa-solid fa-quote-left fa-2x"></i>
<p>"I will recommend your services to everyone I know, as the entire experience was faultless and unforgettable."</p>
<h4> ~ Mike J.</h4>
</blockquote>
</div>
</div>
</section>
<section id="book" role="form" aria-label="booking">
<div class="container">
<h2 id="book-head">Book Your Tour</h2>
<p id="book-desc">Fill out this form and we'll reach out to you shortly.</p>
<form acria-label="book-form" class="booking-form">
<label for="name">Full Name:</label>
<input type="text" id="fullname" name="fname" required placeholder="Enter Full Name">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required placeholder="Enter Email Address">
<label for="package">Select Package:</label>
<select id="package" name="package" required>
<option value="">--Please choose an option--</option>
<option value="tropical">Tropical Paradise</option>
<option value="mountain">Mountain Adventure</option>
<option value="city">City Explorer</option>
</select>
<label for="date">Preferred Date:</label>
<input type="date" id="date" name="date" required>
<label for="requests">Special Requests:</label>
<textarea id="requests" name="requests" rows="4" placeholder="Any special requests?"></textarea>
<button type="submit" aria-label="Submit Booking">Book Now</button>
</form>
</div>
</section>
<footer role="contentinfo">
<div class="container">
<h4>Connect With Us</h4>
<div class="social-media">
<a href="#" aria-label="Facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#" aria-label="Twitter"><i class="fa-brands fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fa-brands fa-instagram"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
<h4>Find Us Here</h4>
<iframe title="ExploreWorld Office Location" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3153.019835235083!2d-122.41941538468187!3d37.77492977975932!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80858064d9d7b8a3%3A0x47fca1f7b3b9b0e!2sTravel%20Agency!5e0!3m2!1sen!2sin!4v1680000000000" allowfullscreen="" loading="lazy"></iframe>
<p>© 2025 Explore World. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>