-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en-AU">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<title>Moreton Bay Regional Council – Save the Bay</title>
<link rel="stylesheet" href="main.css" />
</head>
<body class="privacy-policy page-template-default page page-id-3 logged-in admin-bar no-customize-support elementor-default elementor-kit-5">
<main
id="content"
class="site-main post-3 page type-page status-publish hentry"
role="main"
>
<div class="main-page">
<h1 class="main-page-header">Save the Bay – Volunteer Page</h1>
<p class="main-page-description">Please complete the form below to register your interest in becoming a volunteer with Save the Bay.</p>
<hr class="seperation-line">
<div class="main-page-form-container">
<!-- Create your HTML form here -->
<form id="volunteer-form" class="form-container">
<label for="first-name">First name:</label>
<input type="text" name="first-name" id="first-name" placeholder="Enter your First name">
<label for="last-name">Last name:</label>
<input type="text" name="last-name" id="last-name" placeholder="Enter your Last name">
<label for="dropdown">Volunteer group:</label>
<select name="volunteer-group" id="dropdown">
<option disabled selected value>Select group</option>
<option value="General">General</option>
<option value="food-drink">Food & Drinks</option>
<option value="security">Security</option>
<option value="medical">Medical</option>
</select>
<input type="submit" name="submit" id="submit" class="submit">
</form>
</div>
</div>
</main>
</body>
</html>