-
Notifications
You must be signed in to change notification settings - Fork 0
/
suggestions.html
77 lines (73 loc) · 2.17 KB
/
suggestions.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
<!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="./style.css" />
<title>Suggestions</title>
</head>
<body>
<header>
<nav>
<!-- <div id="myLogo">MyLogo3000</div> -->
<ul id="menu">
<li><a href="./indexLighthouse.html">Home</a></li>
<li><a href="./aboutMe.html"> About me</a></li>
<li><a href="./suggestions.html"> Suggestions</a></li>
<li>
<a
href="https://shop.audiolith.net/Moped-Ascona-Kismet-Habibi-12-Vinyl-Album_1"
>
Shop</a
>
</li>
</ul>
</nav>
</header>
<h1>Your Suggestions</h1>
<div class="wrapper">
<div id="suggestionsWrapper">
<fieldset>
<h3>Where should I go next?</h3>
<input
type="text"
name="whereToo"
id="whereTo"
placeholder="Where to?"
required
/>
<textarea
name="why"
id="why"
cols="30"
rows="10"
placeholder="But why though?"
></textarea>
<input id="submit" type="submit" value="Send me there!" />
</fieldset>
</div>
</div>
<!-- <div>
<fieldset>
<h3>Fancy a newsletter?</h3>
<input type="text" id="name" placeholder="Your name" />
<input type="email" name="" id="email" placeholder="Your e-mail" />
<label
><input type="checkbox" required />I know I'm going to receive
super-anoying emails from now on until the end of time and only the
sacrificing of 17 goats will put an end to this madness. Lord have
mercy on my soul!</label
>
<input type="submit" value="Spam me!" />
</fieldset>
</div> -->
<!-- </div> -->
<footer>
<div id="footer">
<div><a href="./index.html">Home</a></div>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>