-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkumana.html
117 lines (110 loc) · 4.67 KB
/
kumana.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
115
116
117
<!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/animations.css" />
<link rel="stylesheet" href="CSS/kumana-style.css" />
<link rel="stylesheet" href="CSS/newsletter-style.css">
<link rel="icon" type="image/x-icon" href="IMAGES/navfooter-images/mainicon.ico" />
<title>Wildlife Sri Lanka | Kumana National Park</title>
</head>
<script src="//unpkg.com/alpinejs" defer></script>
<body x-data="kumanabody">
<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="#" class="active">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="login.html" class="ctn">Login</a></li>
</ul>
<img src="IMAGES/navfooter-images/menu-btn.webp" class="menu-btn" />
</nav>
<main>
<header class="kumana-header">
<section class="header-content">
<h2 class="shadow" id="subtitle" x-text="subtitle" contenteditable="true"></h2>
<aside class="line"></aside>
<h1 class="shadow" id="title" x-text="title" contenteditable="true"></h1>
<a href="#department-sec2" class="ctn">Learn More</a>
</section>
</header>
</main>
<section id="gotopbtn">
<a href="#"><img src="IMAGES/navfooter-images/arrowhead-up.webp" alt="go to top button" /></a>
</section>
<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 class="newsletter-section">
<h4>Subscribe to Our Newsletter</h4>
<p>Stay updated with our latest news and promotions.</p>
<form id="newsletter-form">
<input type="email" id="newsletter-email" name="email" placeholder="Enter your email" required>
<button type="submit" id="subscribe-btn">Subscribe</button>
</form>
</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>
</footer>
<script>
const menubutton = document.querySelector(".menu-btn");
const navlinks = document.querySelector(".nav-links");
menubutton.addEventListener("click", () => {
navlinks.classList.toggle("mobile-menu");
});
</script>
<script src="JS/homepage.js"></script>
</body>
</html>