-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform-submit.html
More file actions
94 lines (94 loc) · 4.24 KB
/
form-submit.html
File metadata and controls
94 lines (94 loc) · 4.24 KB
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
<!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 rel="stylesheet" href="assets/css/style.css">
<title>Leinster Trophy</title>
<!-- Favicon links and meta code generated by https://realfavicongenerator.net-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest" crossorigin="use-credentials">
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="assets/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- End of Favicon imported links and meta code-->
</head>
<body class="short-page">
<!-- Nav Bar and Logo-->
<header>
<a href="index.html">
<i class="fas fa-trophy"></i>
</a>
<nav>
<ul id="menu">
<li>
<a href="index.html" class="current-page">Home</a>
</li>
<li>
<a href="trophy.html">Trophy</a>
</li>
<li>
<a href="winners.html">Winners</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<!-- Thank you message -->
<section class="main short-content">
<h2>Thank You For Contacting Us!</h2>
<p>Thank you for your message. A member of our team will get back to you as soon as possible, within normal office hours of Monday - Friday 9am - 5pm.</p>
<br>
<p>To stay up to date with all things Leinster Trophy, why not subscribe to our newsletter, or join in the fun on one of our social media channels? Links are below.</p>
</section>
<!-- footer bar -->
<footer>
<div class="footer-top">
<form method="GET" action="newsletter-submit.html" class="newsletter-container">
<h2>Sign up for our newsletter</h2>
<span class="email-form">
<label for="email" id="email-label">email:</label>
<input type="email" id="email" name="email_address" placeholder="myname@email.com" required>
</span>
<input class="sign-up-button" type="submit" value="Sign Up">
</form>
</div>
<div class="footer-bottom">
<ul class="social-channels">
<li class="social-icons">
<a href="https://www.facebook.com" target="_blank" aria-label="Go to our Facebook page (opens in new tab)">
<i class="fab fa-facebook"></i>
</a>
</li>
<li class="social-icons">
<a href="https://www.instagram.com" target="_blank" aria-label="Go to our Instagram page (opens in new tab)">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="social-icons">
<a href="https://www.twitter.com" target="_blank" aria-label="Go to our Twitter page (opens in new tab)">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="social-icons">
<a href="https://www.youtube.com" target="_blank" aria-label="Go to our YouTube page (opens in new tab)">
<i class="fab fa-youtube"></i>
</a>
</li>
</ul>
<p class="copyright">© 2021 Matthew Bodden</p>
</div>
</footer>
<script src="https://kit.fontawesome.com/cd2a226592.js" crossorigin="anonymous"></script>
</body>
</html>