-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfirmation.html
More file actions
90 lines (83 loc) · 3.18 KB
/
confirmation.html
File metadata and controls
90 lines (83 loc) · 3.18 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
<!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="Limerick Comedy Guide for comedy fans in Limerick, Ireland">
<meta name="keywords" content="comedy, Limerick comedy guide, Ireland, stand-up">
<link rel="stylesheet" href="assets/css/style.css">
<title>Limerick Comedy Guide</title>
</head>
<body>
<header>
<!-- Logo/Home Button -->
<a href="index.html" class="big-logo">
<h1 class="logos">
Limerick Comedy Guide
</h1>
</a>
<a href="index.html" class="small-logo">
<h1 class="logos">
L.C.G.
</h1>
</a>
<nav>
<!-- Menu for wider screens -->
<ul id="menu">
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="comedy-links.html">Comedy Links</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
<!-- Menu for smaller screens -->
<ul class="mobile-menu">
<li>
<a href="index.html"><i class="fa-solid fa-house"></i></a>
</li>
<li>
<a href="comedy-links.html"><i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</li>
<li>
<a href="contact.html"><i class="fa-regular fa-message"></i></a>
</li>
</ul>
</nav>
</header>
<!-- Confirmation message for contact.html form -->
<section id="hero-outer" class="confirmation-section">
<div id="hero-image"></div>
<div id="cover-text" class="confirmation-message">
<h2>Your message was totally, absolutely,<br> 100%, received and will be responded to... <br> any day now.
</h2>
</div>
</section>
<footer>
<!-- Social Media Links in footer -->
<ul class="social-links">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page to stand in awe of Mr Zuckerberg (opens in a new tab)"><i
class="fa-brands fa-square-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page to see Elon Musk in action(opens in a new tab)"><i
class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab) to escape this reality"><i
class="fab fa-youtube-square"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/ae0900deec.js" crossorigin="anonymous"></script>
</body>
</html>