-
Notifications
You must be signed in to change notification settings - Fork 656
/
learnmore.html
54 lines (50 loc) · 2.03 KB
/
learnmore.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn More - WildGuard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<h1>WILDGUARD</h1>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Donate</a></li>
<li><a href="#">Event</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="learn-more-section">
<h2>Learn More About Our Conservation Efforts</h2>
<p>At WildGuard, we are dedicated to protecting endangered species and preserving natural habitats. Your donation helps fund essential projects, such as anti-poaching efforts, wildlife rehabilitation, and reforestation.</p>
<div class="content-grid">
<div class="card">
<h3>Our Mission</h3>
<p>We work to ensure the survival of wildlife by protecting their natural habitats and eliminating threats like poaching.</p>
</div>
<div class="card">
<h3>How Donations Help</h3>
<p>Donations directly support rescue operations, habitat restoration, and research for species preservation.</p>
</div>
<div class="card">
<h3>Success Stories</h3>
<p>Read about how your contributions have made a difference in real-world conservation efforts, saving countless animals.</p>
</div>
</div>
<a href="#" onclick="location.href='donation.html';" class="donate-btn">Donate Now</a>
</section>
<footer>
<p>© 2024 WildGuard. All Rights Reserved.</p>
</footer>
</body>
</html>