-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
114 lines (107 loc) · 4.84 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="CSS/style.css" />
<link rel="stylesheet" href="CSS/contact-style.css" />
<link rel="stylesheet" href="CSS/animations.css" />
<link rel="icon" type="image/x-icon" href="IMAGES/navfooter-images/mainicon.ico" />
<title>Wildlife Sri Lanka | Contact Us</title>
</head>
<body>
<nav class="navbar">
<a href="index.html"><img src="IMAGES/navfooter-images/logo.webp" class="logo" alt="logo" /></a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="introduction.html">Introduction</a></li>
<li><a href="department.html">About DWC</a></li>
<li>
<a href="#">Animals</a>
<ul class="sub-menu">
<li><a href="leopard.html">Sri Lankan Leopard</a></li>
<li><a href="animalgallery.html">Animal in Sri Lanka</a></li>
</ul>
</li>
<li>
<a href="#">Parks</a>
<ul class="sub-menu">
<li><a href="wilpattu.html">Wilpattu National Park</a></li>
<li><a href="yaala.html">Yala National Park</a></li>
<li><a href="kumana.html">Kumana National Park</a></li>
</ul>
</li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html" class="ctn">Contact Us</a></li>
</ul>
<img src="IMAGES/navfooter-images/menu-btn.webp" alt="" class="menu-btn" />
</nav>
<main>
<section class="contact-form">
<h2>Send Us a Message</h2>
<form action="#">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
<label for="message">Message:</label>
<textarea id="message" name="message" rows="10" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<section id="gotopbtn">
<a href="#"><img src="IMAGES/navfooter-images/arrowhead-up.webp" alt="go to top button" /></a>
</section>
</body>
<footer>
<section class="footer-container">
<section class="footer-section">
<h4>Contact</h4>
<p>Email: contact@slwildlife.com<br />Phone: 077-177-7788</p>
</section>
<section class="footer-section">
<h4>Quick Links</h4>
<a href="index.html" class="quick-links">Home</a>
<a href="introduction.html" class="quick-links">Introduction</a>
<a href="department.html" class="quick-links">About Us</a>
<a href="leopard.html" class="quick-links">Sri Lankan Leopard</a>
<a href="animalgallery.html" class="quick-links">Animals</a>
<a href="wilpattu.html" class="quick-links">Wilpattu</a>
<a href="yaala.html" class="quick-links">Yala</a>
<a href="kumana.html" class="quick-links">Kumana</a>
<a href="events.html" class="quick-links">Events</a>
<a href="contact.html" class="quick-links">Contact Us</a>
</section>
<section class="footer-section">
<h4>Follow Us</h4>
<p>Stay connected on social media.</p>
<section class="social-icons">
<a href="https://facebook.com/" target="_blank"><img src="IMAGES/navfooter-images/facebook-icon.webp"
alt="Facebook" /></a>
<a href="https://twitter.com/" target="_blank"><img src="IMAGES/navfooter-images/twitter-icon.webp"
alt="Twitter" /></a>
<a href="https://instagram.com/" target="_blank"><img src="IMAGES/navfooter-images/instagram-icon.webp"
alt="Instagram" /></a>
</section>
</section>
</section>
<h5 id="copyright-text">
© 2004-2024 All Rights Reserved. Created by
<a href="http://wa.me/+94751229892" target="_blank">
Hirusha Gunasena.
</a>
</h5>
<!-- References:
- Department of Wildlife Conservation Sri Lanka. "Contact Information." 2022.
- Sri Lanka Government Information Center. "Wildlife Conservation Departments Contact Details."
- Youtube -->
</footer>
<script>
const menubutton = document.querySelector(".menu-btn");
const navlinks = document.querySelector(".nav-links");
menubutton.addEventListener("click", () => {
navlinks.classList.toggle("mobile-menu");
});
</script>
</html>