-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdestinations.html
More file actions
129 lines (121 loc) · 4.84 KB
/
Copy pathdestinations.html
File metadata and controls
129 lines (121 loc) · 4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top Destinations</title>
<link rel="stylesheet" href="global.css">
</head>
<body>
<nav>
<button class="menu-toggle">☰</button>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="packages.html">Packages</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<div class="breadcrumb">
<a href="index.html">Home</a> <span>/</span> <span>Destinations</span>
</div>
<section>
<p>olet samuel</p>
<p>Diploma in Information Technology</p>
<p>reg no 2025 d301-13367</p>
</section>
<section>
<h2>Top Tourist Destinations in Uganda</h2>
<div class="cards">
<div class="card">
<img src="queenelizabethnationalpark2.jpg" alt="Queen Elizabeth National Park elephant">
<h3>Queen Elizabeth National Park</h3>
<p>Famous for tree-climbing lions and diverse wildlife.</p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('Queen Elizabeth National Park')">Book Tour</a>
</div>
<div class="card">
<img src="lake_victoria.jpg" alt="Lake Victoria">
<h3>Lake Victoria</h3>
<p>Largest lake in Africa with beautiful sunsets.</p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('Lake Victoria')">Book Tour</a>
</div>
<div class="card">
<img src="river_nile.jpg" alt="River Nile">
<h3>River Nile</h3>
<p>Source of the Nile, perfect for rafting and sightseeing.</p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('River Nile')">Book Tour</a>
</div>
<div class="card">
<img src="kidepovalleynationalpark.jpg" alt="kidepovalleynationalpark">
<h3>Kidepo Valley National Park</h3>
<p>Breathtaking views in Northern Uganda </p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('Kidepo Valley National Park')">Book Tour</a>
</div>
<div class="card">
<img src="lakemburonationalpark.jpg" alt="lake Mburo national park">
<h3>Lake Mburo National park</h3>
<p>Best sighting of zebras in the world.</p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('Lake Mburo National park')">Book Tour</a>
</div>
<div class="card">
<img src="Bwindiimpenetrablepark.jpg" alt="Bwindi Impenetrable park">
<h3>Bwindi Impenetrable park</h3>
<p>Proud Home to 80% of the world Gorilla population.</p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('Bwindi Impenetrable park')">Book Tour</a>
</div>
<div class="card">
<img src="Murchisonfalls.jpg" alt="Murchison falls">
<h3>Murchison falls</h3>
<p>The world's strongest waterfall.</p>
<a href="packages.html" class="cta-button" onclick="return confirmBooking('Murchison falls')">Book Tour</a>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Uganda</a></li>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Tours & Packages</h3>
<ul>
<li><a href="packages.html">Tour Packages</a></li>
<li><a href="destinations.html">Popular Spots</a></li>
<li><a href="contact.html">Inquire Now</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Hours of Operation</h3>
<ul>
<li>Monday - Friday: 9:00 AM - 6:00 PM</li>
<li>Saturday: 10:00 AM - 4:00 PM</li>
<li>Sunday: Closed</li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Info</h3>
<ul>
<li>Email: info@exploreganda.com</li>
<li>Phone: +256 XXX XXX XXX</li>
<li>Location: Kampala, Uganda</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Explore Uganda. All rights reserved.</p>
</div>
</footer>
<script src="js/common.js"></script>
<script src="js/destinations.js"></script>
</body>
</html>