-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.html
More file actions
129 lines (118 loc) · 4.33 KB
/
Copy pathpackages.html
File metadata and controls
129 lines (118 loc) · 4.33 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>Tour Packages</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>Packages</span>
</div>
<section>
<p>Tumusiime Hansen Andrew</p>
<p>Bachelors Of Computer Science</p>
<p>2023-B291-10756</p>
</section>
<section>
<h2>Popular Tour Packages</h2>
<div class="card">
<h3>3-Day Gorilla Trekking</h3>
<p>Visit Bwindi Forest and see mountain gorillas up close.</p>
<p>Includes accommodation, meals, and experienced guides.</p>
<p><strong>Price: $900</strong></p>
<a href="contact.html" class="cta-button">Book Now</a>
</div>
<div class="card">
<h3>5-Day Wildlife Safari</h3>
<p>Explore Queen Elizabeth, Murchison Falls, and more.</p>
<p>Game drives, boat cruises, and luxury lodging included.</p>
<p><strong>Price: $1200</strong></p>
<a href="contact.html" class="cta-button">Book Now</a>
</div>
<div class="card">
<h3>7-Day Nile Adventure</h3>
<p>Experience the majesty of the Nile with rafting and cultural tours.</p>
<p>White-water rafting, village visits, and waterfall hikes.</p>
<p><strong>Price: $1400</strong></p>
<a href="contact.html" class="cta-button">Book Now</a>
</div>
<div class="card">
<h3>4-Day Lake Victoria Explorer</h3>
<p>Discover Africa's largest lake with island hopping and fishing.</p>
<p>Boat tours, local market visits, and beachfront accommodation.</p>
<p><strong>Price: $850</strong></p>
<a href="contact.html" class="cta-button">Book Now</a>
</div>
<div class="card">
<h3>6-Day Mountain Rwenzori Trek</h3>
<p>Challenge yourself with a trek through the Mountains of the Moon.</p>
<p>Professional guides, camping equipment, and high-altitude experience.</p>
<p><strong>Price: $1600</strong></p>
<a href="contact.html" class="cta-button">Book Now</a>
</div>
<div class="card">
<h3>3-Day Cultural Immersion</h3>
<p>Explore Uganda's diverse cultures and traditions with local communities.</p>
<p>Traditional meals, craft workshops, and homestays included.</p>
<p><strong>Price: $650</strong></p>
<a href="contact.html" class="cta-button">Book Now</a>
</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>
</body>
</html>