generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
75 lines (67 loc) · 2.88 KB
/
contact.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
<!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">
<meta name="description" content="A website that serves as an archive of photos and information about Curracloe, Co Wexford.">
<link rel="stylesheet" href="assets/css/style.css">
<link href="assets/images/favicon.ico" rel="icon" type="image/x-icon"/>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/11a128cecc.js" crossorigin="anonymous"></script>
<title>Curracloe Chronicles</title>
</head>
<body>
<!-- navbar -->
<header class="header">
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html" class="active">Contact Us</a></li>
</ul>
</header>
<section class="form-section">
<form method="POST" action="https://formdump.codeinstitute.net/" class="signup-form">
<h2>Get in Touch! <i class="fa-solid fa-address-book"></i></h2>
<label for="fname">First Name</label>
<input id="fname" name="first_name" type="text" required class="text-input">
<label for="lname">Last Name</label>
<input id="lname" name="last_name" type="text" required class="text-input">
<label for="email">Email Address</label>
<input type="email" id="email" name="email_address" required class="text-input">
<label for="message">Message</label>
<input type="text" id="message" name="message" required class="text-input">
<input class="join-button" type="submit" value="Get in Touch!">
</form>
</section>
<!-- social media -->
<footer class="footer">
<div id="socials">
<ul>
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)"><i class="fa-brands fa-facebook"></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="fa-brands fa-twitter"></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="fa-brands fa-instagram"></i></a>
</li>
</ul>
</div>
<!-- copyright -->
<div class="copyright">
<p>Copyright ©2022 Grace McKenna</p>
</div>
<!-- footer menu -->
<div class="bottom-menu">
<ul id="footer-menu">
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html" class="active">Contact Us</a></li>
</ul>
</div>
</footer>
<a href="#" class="top-button">Back to Top <i class="fa-solid fa-arrow-up"></i></a>
</body>
</html>