forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.html
164 lines (154 loc) · 9.56 KB
/
travel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Destinations</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="travel.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="main-head">
<nav>
<div class="logo">
<img src="img/logo.png" id="logo-web">
<h1 id="logo"><a href="#home">BuddyTrail</a></h1>
</div>
<!-- Hamburger button for mobile -->
<button class="hamburger" id="hamburger">☰</button>
<ul id="nav-list">
<!-- Close button for dropdown -->
<span class="dropdown-close-btn" id="closeBtn">×</span>
<li><a href="#home" class="navhover">Home</a></li>
<li><a href="team.html" class="navhover">Team</a></li>
<li><a href="#deals" class="navhover">Exclusive Deals</a></li>
<li><a href="blog.html" class="navhover">Blogs</a></li>
<li><a href="about.html" class="navhover">About</a></li>
<li><a href="#itineraries" class="navhover">Travel Itineraries</a></li>
<li><a href="F&Q.html" class="navhover">FAQ</a></li>
<li><a href="./contact.html" class="navhover">Contact</a></li>
<li><a href="#reviews" class="navhover">Reviews</a></li>
<li><a href="auth.html" class="navhover">Sign In</a></li>
</ul>
<!-- Toggle Button -->
<div class="toggle-button">
<button class="mode-toggle" id="modeToggle">
<span class="sun-icon glow"><img src="day-mode.png" alt="Light mode"></span>
<span class="moon-icon glow" style="display: none;"><img src="moon.png" alt="Dark mode"></span>
</button>
</div>
</nav>
</header>
<div class="space">
</div>
<div class="container py-5">
<h1 class="text-center mb-5">Explore Amazing Destinations</h1>
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
<div class="col">
<div class="card h-100 destination-card" tabindex="0" aria-label="Paris, France">
<img src="https://images.unsplash.com/photo-1502602898657-3e91760cbb34?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="card-img-top" alt="Eiffel Tower in Paris">
<div class="card-body">
<h5 class="card-title">Paris, France</h5>
<p class="card-text">Discover the city of love and lights, home to iconic landmarks and exquisite cuisine.</p>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#parisModal">Explore</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 destination-card" tabindex="0" aria-label="Tokyo, Japan">
<img src="https://images.unsplash.com/photo-1503899036084-c55cdd92da26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="card-img-top" alt="Tokyo cityscape">
<div class="card-body">
<h5 class="card-title">Tokyo, Japan</h5>
<p class="card-text">Experience the perfect blend of tradition and modernity in Japan's vibrant capital.</p>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#tokyoModal">Explore</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 destination-card" tabindex="0" aria-label="New York City, USA">
<img src="https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="card-img-top" alt="New York City skyline">
<div class="card-body">
<h5 class="card-title">New York City, USA</h5>
<p class="card-text">Explore the Big Apple, a melting pot of cultures with world-famous attractions.</p>
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#nycModal">Explore</button>
</div>
</div>
</div>
</div>
</div>
<!-- Paris Modal -->
<div class="modal fade" id="parisModal" tabindex="-1" aria-labelledby="parisModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="parisModalLabel">Paris, France</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="https://images.unsplash.com/photo-1502602898657-3e91760cbb34?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="img-fluid mb-3" alt="Eiffel Tower in Paris">
<p>Paris, the capital of France, is a major European city and a global center for art, fashion, gastronomy and culture. Its 19th-century cityscape is crisscrossed by wide boulevards and the River Seine.</p>
<h6>Popular Attractions:</h6>
<ul>
<li>Eiffel Tower</li>
<li>Louvre Museum</li>
<li>Notre-Dame Cathedral</li>
<li>Champs-Élysées</li>
</ul>
<h6>Climate:</h6>
<p>Paris has a temperate climate with mild winters and warm summers. The best time to visit is from June to August for sunny weather, or during spring (April to mid-June) for mild temperatures and beautiful blooms.</p>
</div>
</div>
</div>
</div>
<!-- Tokyo Modal -->
<div class="modal fade" id="tokyoModal" tabindex="-1" aria-labelledby="tokyoModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="tokyoModalLabel">Tokyo, Japan</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="https://images.unsplash.com/photo-1503899036084-c55cdd92da26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="img-fluid mb-3" alt="Tokyo cityscape">
<p>Tokyo, Japan's busy capital, mixes the ultramodern and the traditional, from neon-lit skyscrapers to historic temples. The city's many museums offer exhibits ranging from classical art to a reconstructed kabuki theater.</p>
<h6>Popular Attractions:</h6>
<ul>
<li>Tokyo Skytree</li>
<li>Senso-ji Temple</li>
<li>Meiji Shrine</li>
<li>Shibuya Crossing</li>
</ul>
<h6>Climate:</h6>
<p>Tokyo has a humid subtropical climate with hot summers and mild winters. The best time to visit is during spring (March to May) for cherry blossoms, or autumn (September to November) for pleasant weather and colorful foliage.</p>
</div>
</div>
</div>
</div>
<!-- New York City Modal -->
<div class="modal fade" id="nycModal" tabindex="-1" aria-labelledby="nycModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="nycModalLabel">New York City, USA</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="img-fluid mb-3" alt="New York City skyline">
<p>New York City comprises 5 boroughs sitting where the Hudson River meets the Atlantic Ocean. At its core is Manhattan, a densely populated borough that's among the world's major commercial, financial and cultural centers.</p>
<h6>Popular Attractions:</h6>
<ul>
<li>Statue of Liberty</li>
<li>Central Park</li>
<li>Empire State Building</li>
<li>Times Square</li>
</ul>
<h6>Climate:</h6>
<p>New York City has a humid subtropical climate with hot summers and cold winters. The best time to visit is from April to June or September to November when the weather is mild and pleasant.</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>