-
Notifications
You must be signed in to change notification settings - Fork 5
/
contactus.html
182 lines (175 loc) · 5.56 KB
/
contactus.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
<!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" 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>FILL OUT THE FORM BELOW TO GET IN TOUCH WITH US!</h2>
</div>
</div>
</section>
<!--Contact form-->
<div class="form-container">
<!--method and action taken from previous code institute project.-->
<form
class="contactus-form"
method="POST"
action="https://formdump.codeinstitute.net/"
>
<label class="formlabel" for="fname">First Name</label>
<input
id="fname"
type="text"
name="firstname"
placeholder="Your First Name..."
required
/>
<label class="formlabel" for="lname">Surname</label>
<input
id="lname"
type="text"
name="lastname"
placeholder="Your Surname..."
required
/>
<label class="formlabel emailinput" for="email"> Email Address</label>
<input
id="email"
type="email"
name="email"
placeholder="Your Email Address..."
required
/>
<label class="formlabel" for="subject">Subject</label>
<input
id="subject"
type="text"
name="subject"
placeholder="Your Subject..."
required
/>
<label class="formlabel messageinput" for="message">Message</label>
<textarea
id="message"
name="message"
placeholder="Write your message here..."
required
></textarea>
<input class="formbutton" type="reset" value="Clear Form" />
<input class="formbutton" type="submit" value="Send" />
</form>
</div>
<footer>
<div id="left-footer">
<a
href="https://github.com/roomacarthur"
target="_blank"
rel="noopener"
aria-label="Visit the sites developers 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>