-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (115 loc) · 3.78 KB
/
index.html
File metadata and controls
118 lines (115 loc) · 3.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css?family=Noto+Serif|Roboto&display=swap"
rel="stylesheet"
/>
<link href="CSS/index.css" rel="stylesheet" />
<link rel="icon" href="images/favicon-32x32.png" />
<title>Save The Animals</title>
</head>
<body>
<header class="lpHeader" id="Home">
<nav>
<a href="index.html">Home</a>
<a href="aboutUs.html">About Us</a>
<a href="https://confident-meninsky-68dc2b.netlify.com/">Sign Up</a>
</nav>
</header>
<section class="main-content" id="Home">
<div class="intro">
<h1>Save The Animals</h1>
<p>
Save The Animals is an oranization helping conservationists receive
critical funding and increased global support through an app that
provides real-time updates on day-to-day campaigns. We can stop global
extinction if we utilize new technology and interact with supporters
in ways that they want!
</p>
<a href="https://confident-meninsky-68dc2b.netlify.com/">Sign Up</a>
</div>
</section>
<section class="campaigns">
<div class="campaign1">
<div class="c1img">
<img
class="elephant"
src="images/elephants.jpg"
alt="An elephant and its calf"
/>
</div>
<div class="c1text">
<h3>
Organizations
</h3>
<p>
As an organization, you'll be able to host your campaign and set up
a donation goal and deadline, as well as being able to get real-time
updates on the funding for your campaign, monetary donations needed
and recruit users to donate and volunteer for your cause.
</p>
<a href="https://confident-meninsky-68dc2b.netlify.com/organization">
Sign Up
</a>
</div>
</div>
<div class="campaign2">
<div class="c2img">
<img
class="rhino"
src="images/greyrhino.jpg"
alt="A rhino and its calf"
/>
</div>
<div class="c2text">
<h3>
Donors
</h3>
<p>
As a donor, you'll be able to set up a profile and browse through
campaigns by location, species, issues, and urgency level. Once you
find a campaign that matches your values, you'll be able to donate
your time or money to help end gloabl extinction.
</p>
<a href="https://confident-meninsky-68dc2b.netlify.com/">
Donate
</a>
</div>
</div>
<div class="campaign3">
<div class="c3img">
<img
class="tiger"
src="images/tigers.jpg"
alt="A tiger and its cub"
/>
</div>
<div class="c3text">
<h3>
Campaigns
</h3>
<p>
Browse through organizations and campaigns to find a cause that
matches your values. Donate your time, money or services to help
campaigns reach their funding goal and become a part of the solution
to stop the animals of this world from becoming extinct!
</p>
<a href="https://confident-meninsky-68dc2b.netlify.com/campaigns">
Browse
</a>
</div>
</div>
</section>
<footer>
<nav>
<a href="#Home">Home</a>
<a href="aboutUs.html">About Us</a>
<a href="https://confident-meninsky-68dc2b.netlify.com/">Sign Up</a>
</nav>
</footer>
</body>
</html>