-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
168 lines (132 loc) · 5.23 KB
/
index.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WildGuardians</title>
<!-- styles -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="animations.css">
<link rel="stylesheet" href="responsive.css">
</head>
<body>
<section id="hero">
<div class="section-box">
<div class="content-wrap">
<header>
<a class="header-logo"><span>wild</span>guardians</a>
<nav>
<a class="nav-items active">Home</a>
<a class="nav-items">about us</a>
<a class="nav-items">projects</a>
<a class="nav-items">resources</a>
<a class="nav-items">blog</a>
<a class="nav-items">contacts</a>
</nav>
</header>
<div class="hero-content">
<h3>protect</h3>
<h1>wildanimals</h1>
<img src="images/45.png" class="hero-img">
<button class="hero-btn">join with us</button>
</div>
</div>
</div>
</section>
<section id="about">
<div class="section-box">
<div class="content-grid">
<div class="left-grid">
<h3 class="section-sub">About us</h3>
<h2 class="section-title">Who we are?</h2>
<p>
At WildlifeGuardians, we are committed to the preservation and protection of endangered species worldwide.
Our mission is to create awareness, provide resources for conservation efforts, and take direct action to
save vulnerable wildlife from extinction. With over a decade of experience, our team of environmentalists,
biologists, and volunteers works tirelessly to protect Earth's most precious creatures and their habitats.
</p>
<button class="action-btn">Learn More</button>
</div>
<div class="right-grid">
<img src="images/about-img.png" class="about-img">
</div>
</div>
</div>
</section>
<section id="projects">
<div class="section-box">
<div class="content-grid">
<div class="right-grid">
<img src="images/projects-img.png" class="about-img">
</div>
<div class="left-grid">
<h3 class="section-sub">projects</h3>
<h2 class="section-title">What we did?</h2>
<p>
1. Project Savannah Shield – A dedicated effort to protect the last remaining herds of African elephants
from poaching in Kenya’s savannah.<br><br>
2. Project Savannah Shield – A dedicated effort to protect the last remaining herds of African elephants
from poaching in Kenya’s savannah.<br><br>
3. Project Savannah Shield – A dedicated effort to protect the last remaining herds of African elephants
from poaching in Kenya’s savannah.
</p>
<button class="action-btn">more projects</button>
</div>
</div>
</div>
</section>
<section id="join-us">
<div class="section-box">
<div class="content-wrap">
<h3 class="section-sub">join with us</h3>
<h2 class="section-title">Save Wildlife, Protect Nature</h2>
<div class="join-form">
<input type="text" class="input-1 i1" placeholder="Your Name">
<input type="email" class="input-1 i2" placeholder="Your Email">
<input type="text" class="input-1 i3" placeholder="Your Number">
<input type="text" class="input-1 i4" placeholder="Your Address">
<p>Membership</p>
<div class="checkbox-wrap">
<label><input type="checkbox"> Individual</label>
<label><input type="checkbox"> Family</label>
<label><input type="checkbox"> Corporate</label>
</div>
<button class="join-btn">be a member</button>
</div>
</div>
</div>
</section>
<section id="footer">
<div class="section-box">
<div class="footer-grid">
<div>
<h3>Quick Links</h3>
<a class="footer-items f1">Home</a>
<a class="footer-items f2">about us</a>
<a class="footer-items f3">projects</a>
<a class="footer-items f4">resources</a>
<a class="footer-items f5">blog</a>
<a class="footer-items f6">contacts</a>
</div>
<div>
<h3>Contacts</h3>
<a class="footer-items f1">+1 (800) 555-WILD (9453)</a>
<a class="footer-items f2">+1 (888) 999-SAVE (7283)</a>
<a class="footer-items f3">info@wildlifeguardians.org</a>
<a class="footer-items f4">1234 Forest Drive,
Green Valley, CA 90210</a>
</div>
<div>
<h3>Socials</h3>
<a class="footer-items f1">facebook</a>
<a class="footer-items f2">youtubr</a>
<a class="footer-items f3">instagram</a>
<a class="footer-items f4">linkedin</a>
<a class="footer-items f5">twitter</a>
</div>
</div>
<p class="copyrights">© codegenweb | all rights reserved</p>
</div>
</section>
</body>
</html>