generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact-us.html
100 lines (96 loc) · 4.32 KB
/
contact-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="In order to maintain the beautiful parks of Copenhagen we're in need of volunteers to pick up litter">
<meta name="keywords" content="trash, pollution, dirty, clean city, litter picker, litter picker group">
<link rel="stylesheet" href="assets/css/style.css">
<title>Cleaner Copenhagen</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="logo">Cleaner Copenhagen</h1>
</a>
<nav>
<ul id="menu">
<li>
<a href="index.html" aria-label="Jump to Home page">Home</a>
</li>
<li>
<a href="about-us.html" aria-label="Jump to Abous Us page">About Us</a>
</li>
<li>
<a href="what-we-do.html" aria-label="Jump to What We Do page">What We Do</a>
</li>
<li>
<a href="contact-us.html" aria-label="Jump to Contact page" class="active">Contact</a>
</li>
</ul>
</nav>
</header>
<!-- ====================== hero-image ====================== -->
<section id="hero-outer">
<div id="hero-image">
<span role="img" aria-label="Clean and bright asphalt road in a city park"></span>
</div>
<div id="hero-cover">
<div id="cover-text">
<h2>Join us and make a difference</h2>
</div>
</div>
</section>
<!-- ====================== contact form ====================== -->
<section id="form-section">
<div id="form-div-back">
<h2>Get in contact</h2>
<div id="form-div-front">
<div>
<form class="contactus-form">
<label class="label" for="fname">First Name</label>
<input id="fname" type="text" name="first_name" required />
<label class="label" for="lname">Last Name</label>
<input id="lname" type="text" name="last_name" required />
<label class="label" for="email">Email Address</label>
<input id="email" type="email" name="email_address" required />
<label class="label" for="message">Message</label>
<textarea id="message" name="message" style="height: 150px" required></textarea>
<input class="formbutton" type="reset" value="Clear" />
<input class="formbutton" type="button" value="Send" />
</form>
</div>
</div>
</div>
</section>
<!-- ====================== footer ====================== -->
<footer>
<div id="left-footer">
<ul>
<li>
<a href="https://facebook.com" aria-label="Visit our Facebook page (opens in a new tab)"
target="_blank" rel="noopener"><i class="fab fa-facebook-square" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://youtube.com" aria-label="Visit our Youtube channel (opens in a new tab)"
target="_blank" rel="noopener"><i class="fab fa-youtube-square" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://twitter.com" aria-label="Visit our twitter page (opens in a new tab)"
target="_blank" rel="noopener"><i class="fab fa-twitter-square" aria-hidden="true"></i></a>
</li>
<li>
<a href="https://instagram.com" aria-label="Visit our instagram page (opens in a new tab)"
target="_blank" rel="noopener"><i class="fab fa-instagram-square" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div id="right-footer">
<h3>CLEANER COPENHAGEN 2021©</h3>
</div>
</footer>
<!-- ====================== font awesome script for icons ====================== -->
<script src="https://kit.fontawesome.com/51b9956ef3.js" crossorigin="anonymous"></script>
</body>
</html>