forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
84 lines (79 loc) · 3.4 KB
/
faq.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WildGuard FAQ</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="faq">
<h1 class="section-title">Frequently Asked Questions</h1>
<div class="faq-accordion">
<h2 class="accordion-header">About WildGuard</h2>
<div class="accordion-content">
<ul class="faq-list">
<li>
<h3 class="faq-question">What is WildGuard's mission?</h3>
<p class="faq-answer">WildGuard is dedicated to preserving wildlife and protecting endangered species worldwide.</p>
</li>
<li>
<h3 class="faq-question">How long has WildGuard been operating?</h3>
<p class="faq-answer">WildGuard was founded in [Year] and has been actively working to protect wildlife for [Number] years.</p>
</li>
<li>
<h3 class="faq-question">What is WildGuard's approach to conservation?</h3>
<p class="faq-answer">WildGuard employs a holistic approach to conservation, focusing on habitat preservation, anti-poaching efforts, and community engagement.</p>
</li>
<li>
<h3 class="faq-question">Where does WildGuard operate?</h3>
<p class="faq-answer">WildGuard has projects in [List of regions or countries].</p>
</li>
</ul>
</div>
</div>
<div class="faq-accordion">
<h2 class="accordion-header">Our Work</h2>
<div class="accordion-content">
<ul class="faq-list">
<li>
<h3 class="faq-question">What are some of WildGuard's successful conservation projects?</h3>
<p class="faq-answer">WildGuard has successfully [List of achievements, e.g., increased population of endangered species, protected critical habitat].</p>
</li>
<li>
<h3 class="faq-question">How does WildGuard combat poaching and illegal wildlife trade?</h3>
<p class="faq-answer">WildGuard works with local communities, law enforcement, and technology to combat poaching and illegal wildlife trade.</p>
</li>
</ul>
</div>
</div>
<div class="faq-accordion">
<h2 class="accordion-header">Donations and Volunteering</h2>
<div class="accordion-content">
<ul class="faq-list">
<li>
<h3 class="faq-question">How can I donate to WildGuard?</h3>
<p class="faq-answer">You can donate online through our website or by sending a check to [Address].</p>
</li>
<li>
<h3 class="faq-question">What are the different ways I can volunteer with WildGuard?</h3>
<p class="faq-answer">WildGuard offers various volunteer opportunities, including [List of volunteer opportunities, e.g., fundraising, habitat restoration, education].</p>
</li>
</ul>
</div>
</div>
<div class="faq-accordion">
<h2 class="accordion-header">Contact Us</h2>
<div class="accordion-content">
<ul class="faq-list">
<li>
<h3 class="faq-question">How can I contact WildGuard?</h3>
<p class="faq-answer">You can contact us by email at [Email address] or by phone at [Phone number].</p>
</li>
</ul>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>