-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
188 lines (185 loc) · 6.13 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!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 active" href="index.html">Home</a></li>
<li><a class="navlink" 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>help protect our oceans with small changes every day</h2>
</div>
</div>
</section>
<!--Main Call to Action Section, 3x Div's-->
<div id="home-container">
<!--Left CTA-->
<div class="left-main home-div">
<a
href="ourmission.html"
aria-label="Visit Our Mission page to understand more. (opens in same tab)"
>
<div class="div-content">
<h2>Help spread The Word</h2>
<img
class="main-img"
src="assets/images/pexels-victor-freitas-1072842.jpg"
alt="Image of a hand held out on the surface of the water."
/>
<p>
Join together and spread the word in becoming more sustainable
to help fight and protect our oceans.
</p>
</div>
</a>
</div>
<!--Right CTA-->
<div class="right-main home-div">
<a
href="ouroceans.html"
aria-label="Visit Our oceans page to learn more. (opens in same tab)"
>
<div class="div-content">
<h2>Want to Learn More</h2>
<img
class="main-img"
src="assets/images/noplanetb-book.jpg"
alt="No Planet B front cover"
/>
<p>
There is plenty of awesome articles and books out there that are
full of interesting facts and figures! Don't be afraid to
challenge someone's opinion if you don't think it's right.
</p>
</div>
</a>
</div>
<!--Center CTA-->
<div class="center-main home-div">
<a
href="doyourpart.html"
aria-label="Visit Our Do Your Part page to see what you can do. (opens in same tab)"
>
<div class="div-content">
<h2>Help make a difference</h2>
<img
class="main-img"
src="assets/images/beach-cleanup.jpg"
alt="Picture of someone picking up a plastic bottle on a beach."
/>
<p>See what you can do to make a difference.</p>
</div>
</a>
</div>
</div>
<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>