generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
feedback.html
90 lines (80 loc) · 3.41 KB
/
feedback.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
<!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="History of the Plassy shipwreck on Inisheer, Aran Islands, Ireland">
<meta name="keywords" content="plassy, shipwreck, ,inisheer, aran islands, ireland">
<link rel="stylesheet" href="assets/css/style.css">
<title>Plassy Feedback</title>
</head>
<body>
<!-- heading and menu -->
<header>
<a href="index.html">
<h1 id="logo">PLASSY</h1>
</a>
<nav id="menu">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="history.html">History</a>
</li>
<li>
<a href="#" class="active">Feedback</a>
</li>
</ul>
</nav>
</header>
<!-- feedback input section -->
<section class="feedback-section">
<form class="feedback-form" method="POST" action="https://formdump.codeinstitute.net/">
<h2>Feedback Welcome <i class="fas fa-comments"></i> </h2>
<label for="fname">First Name</label>
<input id="fname" class="text-input" type="text" name="first_name" required>
<label for="lname">Last Name</label>
<input id="lname" class="text-input" type="text" name="last_name" required>
<label for="email">Email Address</label>
<input id="email" class="text-input" type="email" name="email_address" required>
<h2>How did you find us?</h2>
<input id="www" type="radio" name="query_response" value="www" required>
<label for="www">WWW Search</label>
<input id="social" type="radio" name="query_response" value="social">
<label for="social">Social Media</label>
<input id="other" type="radio" name="query_response" value="other">
<label for="other">Other</label>
<p>
<label for="freetype">If the response is other or if you have any comments or suggestions please enter in the textbox below </label>
<input id="freetype" class="text-input" type="text" name="freetype_response" value=" ">
</p>
<input class="launch-button" type="submit" value="Launch Me">
</form>
</section>
<div class="bg-img-ref">
<p>
<a href="https://www.independent.ie/lifestyle/scotch-on-the-rocks-30087314.html" target="_blank" aria-label="background image plassey under visit sunrise courtesy of Irish Independent">Image courtesy of Irish Independent</a>
</p>
</div>
<footer>
<ul class="social-networks">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)"><i class="fab 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="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)"><i class="fab fa-youtube-square"></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="fab fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/559cadc1ae.js" crossorigin="anonymous"></script>
</body>
</html>