-
Notifications
You must be signed in to change notification settings - Fork 5
/
ourmission.html
174 lines (173 loc) · 6.15 KB
/
ourmission.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
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
<meta
name="description"
content="Saving the world isn't easy, neither is saving our oceans. The sooner we start the sooner we can make a difference."
/>
<meta
name="keywords"
content="sustainability, protect our oceans, climate change, marine wildlife, "
/>
<link
rel="shortcut icon"
href="assets/images/favicon.ico"
type="image/x-icon"
/>
<title>SEASTAINABILITY</title>
</head>
<body>
<header>
<!--Site Logo-->
<a href="index.html"><h1 id="logo">Seastainability</h1></a>
<!--Main Navigation-->
<nav id="header-nav">
<!--Mobile Hamburger Navigation Menu-->
<div id="mobile-nav">
<label class="mobile-menu" for="hamburger">☰</label>
<input type="checkbox" id="hamburger" />
<div id="hamitems">
<ul>
<li><a class="navlink" href="index.html">Home</a></li>
<li>
<a class="navlink active" href="ourmission.html">Our Mission</a>
</li>
<li><a class="navlink" href="ouroceans.html">Our Oceans</a></li>
<li>
<a class="navlink" href="doyourpart.html">Do Your Part</a>
</li>
<li><a id="contact-us" href="contactus.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div id="container">
<!--Main background Image-->
<section id="hero">
<img
id="hero-image"
src="assets/images/sea-3652697_1920.jpg"
alt="Picture of a calm sea."
/>
<!--Background Image Cover Text.-->
<div id="hero-cover">
<div id="cover-text">
<h2>WHAT WE NEED TO DO AS A COLLECTIVE TO SAVE OUR OCEANS</h2>
</div>
</div>
</section>
<section class="page-content">
<div class="content content-left ourmission-content-left">
<img
class="content-image"
src="assets/images/ecosystem.jpg"
alt="Ocean ecosystem, coral and small fish."
/>
<p>
We strive to provide adequate knowledge on what is happening to our
oceans to allow people to make defined decisions on what they can do
to help protect our oceans. Simple everyday changes that people
overlook can make a massive difference if everyone does their part.
Sustainability in our everyday living will protect our oceans and
help protect most ecosystems.
</p>
</div>
<div class="content content-right ourmission-content-right">
<img
class="content-image"
src="assets/images/globalwarming.jpg"
alt="Factory chimneys polluting the atmosphere."
/>
<p>
Making people aware of the problems our oceans face and what causes
we can get behind to help fight to protect our oceans. Governments
are waking up and making changes, with the upcoming COP26 taking
place on November 7th and 8th in Glasgow, we will learn who and who
isn’t making changes to help combat climate change, help protect our
oceans and become more sustainable.
</p>
</div>
<div class="content content-left ourmission-content-left">
<img
class="content-image"
src="assets/images/childlearning.jpg"
alt="A child learning."
/>
<p>
Young people should be taught more about being sustainable and what
effects our decisions in life can have on our oceans, implementing
fun lessons and learning environments on the subjects of
sustainability and our oceans will help give our younger generations
the knowledge they need to not make the mistakes our ancestors made
and bolster our chances of safer ocean ecosystems.
</p>
</div>
</section>
<footer>
<div id="left-footer">
<a
href="https://github.com/roomacarthur"
target="_blank"
rel="noopener"
aria-label="Visit the sites developer page. (opens in new tab)"
>
<h3>Site By Roo</h3>
</a>
</div>
<div id="right-footer">
<h3>Seastainability 2021 ©</h3>
</div>
<div id="center-footer">
<ul class="footer-socials">
<li>
<a
href="https://facebook.com"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
><i class="fab fa-facebook-square"></i
></a>
</li>
<li>
<a
href="https://youtube.com"
target="_blank"
rel="noopener"
aria-label="Visit our Youtube channel (opens in a new tab)"
><i class="fab fa-youtube-square"></i
></a>
</li>
<li>
<a
href="https://twitter.com"
target="_blank"
rel="noopener"
aria-label="Visit our twitter page (opens in a new tab)"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a
href="https://instagram.com"
target="_blank"
rel="noopener"
aria-label="Visit our instagram page (opens in a new tab)"
><i class="fab fa-instagram-square"></i
></a>
</li>
</ul>
</div>
</footer>
</div>
<!--font awesome script for icons-->
<script
src="https://kit.fontawesome.com/51b9956ef3.js"
crossorigin="anonymous"
></script>
</body>
</html>