-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (62 loc) · 3.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="title" content="Jung Tzen Liew's About Me">
<meta name="author" content="Jung Tzen Liew">
<meta name="keywords" content="About Me, University of California San Diego, Peanut Gallery">
<link rel="stylesheet" type="text/css" href="styles/style.css">
<title>Contact Me</title>
<style>
input[type="checkbox"]{
display: none;
}
</style>
</head>
<body>
<header class="header_container">
<div id="theme">
<label for="theme_switcher">
<input type="checkbox" id="theme_switcher" onclick="themeButton()">
<span class="theme_switch"></span>
</label>
</div>
<nav class="navigation">
<ul id="menu">
<li><a href="index.html">HOMEPAGE</a></li>
<li><a href="all_about_me.html">ABOUT ME</a></li>
<li><a href="documents.html">LET'S GET PROFESSIONAL</a></li>
<li><a href="contact.html" class="current_page">CONTACT ME</a></li>
<li><a href="widgets.html">WIDGETS</a></li>
</ul>
</nav>
</header>
<main>
<br>
<form class="suggestions" action="https://httpbin.org/post" method="POST">
<fieldset>
<label for="form_name">WHAT'S YOUR NAME?</label>
<input type="text" name="form_name" id="form_name" placeholder="Enter your name here..." pattern="[A-Za-z ]*" required><br>
<output for="form_name" id="name_error"></output><br>
<output for="form_name" id="name_info"></output><br>
<label for="email">WHAT'S YOUR EMAIL?</label>
<input type="email" name="email" id="email" placeholder="[email protected]" required><span></span><br>
<output for="email" id="email_error"></output><br>
<output for="email" id="email_info"></output><br>
<label for="comments">COMMENTS?</label>
<textarea type="text" name="comments" id="comments" placeholder="Comments should only contain typical characters (letters, numbers, spaces, and . ? ! , ' +)" rows="5" maxlength="200" required></textarea>
<output for="comments" id="comments_info"></output><br>
<output for="comments" id="comments_error"></output><br>
<label for="possible_bot"></label>
<input type="hidden" name="possible_bot" id="possible_bot" value="true">
<output for="possible_bot" id="possible_bot_error"></output>
<output for="possible_bot" id="possible_bot_info"></output>
<button class="submit" type="submit">SUBMIT</button>
</fieldset>
</form>
</main>
<script src="scripts/script.js"></script>
<script src="scripts/theme.js"></script>
</body>
</html>