-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
68 lines (61 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Me</title>
<link rel="icon" href="insta.png">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body id="body">
<header>
<h1>Contact Me</h1>
<aside class="themes">
<button id="light" onclick="changeToLight()">Light</button><br>
<button id="dark" onclick="changeToDark()">Dark</button><br>
<button id="colorful" onclick="changeToColor()">Colorful</button>
</aside>
<aside id="place-holder"></aside>
</header>
<main>
<nav class="navbar">
<ul class="navlinks">
<ui><a href="index.html">Home</a></ui>
<ui><a href="about.html">About Me</a></ui>
<ui><a href="japan-2019.html">Japan 2019</a></ui>
<ui><a href="cancun-2019.html">Cancun 2019</a></ui>
<ui><a href="london-2023.html">London 2023</a></ui>
<ui><a href="contact.html">Contact Me</a></ui>
</ul>
</nav>
<section>
<form>
<label for="fname">First name:</label><br>
<input type="text" name="fname" id="fname" required><br>
<label for="lname">Last name:</label><br>
<input type="text" name="lname" id="lname" required><br>
<label for="email">Email:</label><br>
<input type="text" name="email" id="email" required autocomplete="off">
<input type="checkbox" id="newsletter" name="newsletter" value="newsletter">
<label for="newsletter">Sign me up for monthly newsletters</label><br>
<label for="returning_yes">Are you a returning subscriber?</label><br>
<input type="radio" id="returning_yes" name="returning" value="returning_yes" required>
<label for="returning_yes">Yes</label><br>
<input type="radio" id="returning_no" name="returning" value="returning_no" required>
<label for="returning_no">No</label><br>
<label for="liked">How did you feel about my website?</label><br>
<input type="radio" id="liked" name="liked_website" value="liked" required>
<label for="liked">Liked</label><br>
<input type="radio" id="disliked" name="liked_website" value="disliked">
<label for="disliked">Disliked</label><br>
<input type="radio" id="either" name="liked_website" value="either">
<label for="either">Either</label><br>
<label for="add-msg">Additional comments you would like to share:</label><br>
<textarea name="message" id="add-msg">Leave your message here</textarea><br>
<input type="submit" value="Submit" id="submit"><br>
<p id="error-msg"></p>
</form>
</section>
</main>
<script src="script-contact.js"></script>
</body>
</html>