-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
96 lines (87 loc) · 3.01 KB
/
Copy pathcontact.html
File metadata and controls
96 lines (87 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="contact.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>Contact</span>
</div>
<section>
<p>NANSAMBA JOAN</p>
<p>BACHELOR OF EDUCATION WITH ARTS</p>
<p>2025-B201-13428</p>
</section>
<section>
<h2>Contact / Feedback Form</h2>
<form name="contactForm">
<label for="name">Your Name</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" title="Full name">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email address" title="Email address">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Enter your message here" title="Message"></textarea>
<button type="button" onclick="validateForm()" class="cta-button">Submit</button>
</form>
</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/contact.js"></script>
</body>
</html>