-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.html
executable file
·68 lines (66 loc) · 2.35 KB
/
contact-us.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">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.1/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous">
<script src="scripts/contact-us.js"></script>
<title>Contact</title>
</head>
<body>
<header>
<nav>
<div>
<li class="float-left">Play2Learn <i class="fa fa-user-graduate"></i></li>
</div>
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Games<i class="fa fa-arrow-down" id="arrow"></i></a>
<!-- arrow icon needs screen width of at least 466px -->
<ul>
<li><a href="games/anagram-hunt.html">Anagram Hunt</a></li>
<li><a href="games/math-facts.html">Math Facts</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</nav>
</header>
<br />
<main>
<h2>Contact Us</h2>
<form id="contact-form" method="post" action="javascript:alert('Form Submitted')" novalidate>
<label for="email">Your email address:</label>
<input type="email" id="email" name="email" required>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject"
required minlength="1" maxlength="25">
<label for="message">Message:</label>
<textarea name="message" id="message" cols="40" rows="4" required
minlength="1" maxlength="200"></textarea><br>
<button name="submit">Submit</button>
</form>
<br />
<h2 id="message-sent" class="invisible">Your message has been sent. Thank You!</h2>
</main>
<footer>
<p class="copyright">© 2022 bgroveben. All rights reserved.</p>
<address>
<a href="https://www.instagram.com">
<i class="fab fa-instagram"></i></a>
<a href="https://twitter.com">
<i class="fab fa-twitter-square"></i></a>
<a href="https://www.facebook.com">
<i class="fab fa-facebook-square"></i></a>
</address>
</footer>
</body>
</html>