generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
121 lines (109 loc) · 4.69 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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" class="active">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>
<!-- Contact Form Section -->
<section class="contact-section">
<!-- form goes nowhere due to scope of project -->
<form action="confirmation.html" method="GET" class="contact-form">
<h2>Have any questions, or maybe you want to tell me a joke?</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 id="email" name="email_address" type="email" required class="text-input">
<label for="message">Your Message</label>
<textarea name="message" id="message" placeholder="Come on, be nice." rows="10" cols="40"
class="textarea-input text-input"></textarea>
<p>Wouldn't mind pre-warning me what this is would you?</p>
<br>
<input id="suggestion" name="message_type" type="radio" value="suggestion" required>
<label for="suggestion">Suggestion</label>
<br>
<input id="complaint" name="message_type" type="radio" value="complaint">
<label for="complaint">Complaint</label>
<br>
<input id="joke" name="message_type" type="radio" value="joke">
<label for="joke">Joke</label>
<br>
<input id="other" name="message_type" type="radio" value="other">
<label for="other">Something else?</label>
<br>
<input id="nope" name="message_type" type="radio" value="nope">
<label for="nope">No Hints! - You'll have to see</label>
<br>
<input type="submit" value="Fire Away!" class="fire-away-button">
</form>
</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>