-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
99 lines (90 loc) · 4.26 KB
/
Copy pathsignup.html
File metadata and controls
99 lines (90 loc) · 4.26 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
95
96
97
98
99
<!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="Your local Tabletop Gaming Community">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/258b4b5b87.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/style.css">
<title>Tabletop Gamers | Thank You</title>
</head>
<body>
<nav id="navbar-container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
<header>
<div id="header-logo-container">
<a href="index.html">
<img src="assets/images/logo.png" alt="Tabletop Gamers Logo - Small">
<h1>Tabletop Gamers</h1>
</a>
</div>
<nav id="navbar-container-md">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
<button id="menu-control" aria-label="Navigation menu toggle button." tabindex="2">
<i id="menu-open-icon" class="fas fa-bars"></i>
<i id="menu-close-icon" class="fas fa-times-circle"></i>
</button>
</header>
<main>
<section id="thank-you">
<h2>Thank You!</h2>
<h3>You successfully have signed up to our newsletter</h3>
<p>You will receive the first news letter at the start of the next month</p>
</section>
</main>
<footer id="footer">
<section class="footer-section-1">
<h3>Newsletter Sign Up!</h3>
<form action="signup.html" method="get">
<input aria-label="Email Address" type="email" name="email" id="email"
placeholder="Enter Email Address..." required>
<fieldset>
<legend>What do you want to subscribe to?</legend>
<label for="events">Events</label>
<input type="radio" name="option" id="events" value="events" required>
<label for="offers">News & Offers</label>
<input type="radio" name="option" id="offers" value="offers" required>
<label for="both">Both</label>
<input type="radio" name="option" id="both" value="both" required>
</fieldset>
<input type="submit" value="Sign Up">
</form>
</section>
<section class="footer-section-2">
<h3>Our Social Platforms!</h3>
<div>
<a title="Link to twitter" href="https://twitter.com" target="_blank" rel="noreferrer"><i
class="fab fa-twitter-square"></i></a>
<a title="Link to facebook" href="https://facebook.com" target="_blank" rel="noreferrer"><i
class="fab fa-facebook-square"></i></a>
<a title="Link to instagram" href="https://instagram.com" target="_blank" rel="noreferrer"><i
class="fab fa-instagram-square"></i></a>
<a title="Link to discord" href="https://discord.gg/wSpSSuUSY6" target="_blank" rel="noreferrer"><i
class="fab fa-discord"></i></a>
</div>
</section>
<section class="footer-section-3">
<h3>Where to find us...</h3>
<iframe id="footer-map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2477.068884138504!2d-3.944640084087087!3d51.62194731014208!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x486ef535f101b61d%3A0x3df66bfc5b2a35cb!2sThe%20Gamers%20Emporium!5e0!3m2!1sen!2suk!4v1635276770255!5m2!1sen!2suk"
style="border:0;" allowfullscreen="" loading="lazy" title="Google Maps">
</iframe>
</section>
</footer>
<script src="assets/js/menu.js"></script>
</body>
</html>