forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
94 lines (86 loc) · 4.54 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Save World Animals</title>
<link rel="stylesheet" href="assets/css/about.css">
</head>
<body>
<body>
<!-- Navbar Section -->
<nav class="navbar" data-navbar>
<button class="nav-close-btn" aria-label="Close Menu" data-nav-close-btn>
<ion-icon name="close-outline"></ion-icon>
</button>
<a href="#" class="logo">WildGuard</a>
<ul class="navbar-list">
<li>
<a href="./index.html" class="navbar-link active" data-nav-link>
<span>Home</span>
<ion-icon name="chevron-forward-outline" aria-hidden="true"></ion-icon>
</a>
</li>
<li>
<a href="donate.html" class="navbar-link" data-nav-link>
<span>Donate</span>
<ion-icon name="chevron-forward-outline" aria-hidden="true"></ion-icon>
</a>
</li>
</ul>
</nav>
<header class="hero-section">
<div class="hero-content">
<h1>Raise Your Hand to Save World Animals Life</h1>
<p>
Our mission is to provide the best care and support for animals in need, ensuring their safety and well-being.
</p>
<a href="donate.html">
<button class="btn-donate">Donate Now</button>
</a>
</div>
</header>
<section class="mission-section">
<div class="container">
<h2>Our Mission</h2>
<p>We believe that every animal deserves a chance at a safe and healthy life. Through our initiatives, we aim to protect endangered species, rehabilitate injured wildlife, and educate communities on how to coexist with animals. Together, we can make a difference and give animals the life they deserve.</p>
</div>
</section>
<section class="charity-section">
<div class="container">
<h2>Our Initiatives</h2>
<div class="charity-cards">
<div class="charity-card">
<h3>Charity For Foods</h3>
<p>
Many animals suffer from malnutrition and hunger due to abandonment, habitat destruction, or overcrowding in shelters. Our "Charity For Foods" initiative focuses on providing nourishing meals to animals in shelters and wildlife rescue centers. We collaborate with local communities and businesses to distribute fresh food to animals in need, helping them recover their strength and health.
</p>
</div>
<div class="charity-card">
<h3>Charity For Education</h3>
<p>
Education is the key to long-term change. Our "Charity For Education" initiative raises awareness about animal rights and welfare. We host workshops in schools, colleges, and communities to teach the importance of empathy, respect, and responsibility toward animals. By educating the next generation, we hope to create a more compassionate world where animals are protected and cared for.
</p>
</div>
<div class="charity-card">
<h3>Charity For Water</h3>
<p>
Water is essential for life, and many animals, especially in arid regions, suffer from a lack of clean, drinkable water. Our "Charity For Water" initiative works to provide sustainable water sources for wildlife and animals in shelters. We install water tanks, purification systems, and community-managed water stations in areas where water is scarce, ensuring animals have access to this vital resource.
</p>
</div>
<div class="charity-card">
<h3>Charity For Medical</h3>
<p>
Countless animals suffer from injuries, illnesses, and diseases, often without access to veterinary care. Our "Charity For Medical" program ensures that these animals receive the medical attention they need. We provide funding for surgeries, vaccinations, rehabilitation, and ongoing care. We also partner with veterinarians and clinics to offer free or low-cost treatments to animals in crisis.
</p>
</div>
</div>
</div>
</section>
<footer class="footer-section">
<div class="container">
<p>© 2024 Save World Animals. All rights reserved.</p>
</div>
</footer>
</body>
</html>