-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
99 lines (88 loc) · 3.98 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<link rel="stylesheet" href="galley.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="title">
<a href="index.html">abroad</a>
</div>
<div id="two-nav-blocks">
<div class="nav-sections">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="destinations.html">Destination</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</div>
</div>
</nav>
<!-- This is the end of the section to be applied in all pages -->
<section class="hero-gallery">
<div class="hero-gallery-content">
<h1>Welcome to Our Gallery</h1>
<p>Enjoy our collection of unique images and artworks.</p>
</div>
</section>
<section class="featured-destinations">
<h2>Featured Destinations</h2>
<div class="destinations-container">
<div class="card">
<img class="card-img-top" src="Images/destination1.jpg" alt="Destination 1">
<div class="card-body">
<h5 class="card-title">Beach Paradise</h5>
<p class="card-text">Experience the serenity of golden sands and azure waves. Perfect for relaxation or water sports adventures</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/destination2.jpg" alt="Destination 2">
<div class="card-body">
<h5 class="card-title">Majestic Mountains</h5>
<p class="card-text">Breathe in the crisp, fresh air while surrounded by towering peaks and lush valleys.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/destination3.jpg" alt="Destination 3">
<div class="card-body">
<h5 class="card-title">City Lights</h5>
<p class="card-text">Feel the pulse of urban life with dazzling skylines, vibrant nightlife, and cultural landmarks.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/destination4.jpg" alt="Destination 4">
<div class="card-body">
<h5 class="card-title">Enchanted Forest</h5>
<p class="card-text">Immerse yourself in nature with tranquil trails, towering trees, and a melody of wildlife.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/destination5.jpg" alt="Destination 5">
<div class="card-body">
<h5 class="card-title">Desert Mirage</h5>
<p class="card-text">Marvel at the beauty of endless dunes, golden sunsets, and a star-studded night sky.</p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="Images/destination6.jpg" alt="Destination 6">
<div class="card-body">
<h5 class="card-title">Tropical Island</h5>
<p class="card-text">Discover paradise with palm-lined shores, turquoise waters, and hidden lagoons</p>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<p>© 2024 All Rights Reserved.</p>
</div>
</footer>
</body>
</html>