-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
42 lines (39 loc) · 1.53 KB
/
contact.html
File metadata and controls
42 lines (39 loc) · 1.53 KB
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
<!DOCTYPE html>
<html>
<head>
<title>CCC | Contact Us</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="nav">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="forum.html">Forum</a>
<a href="contact.html">Contact Us</a>
<a href="fame.html">hall of fame</a>
</div>
<center>
<h1>Contact Us</h1>
<div id="after_submit"></div>
<form id="contact_form" action="mailto:adele.qualls@gmail.com" method="POST" enctype="multipart/form-data">
<div class="row">
<label class="required" for="name">Your name:</label><br />
<input id="name" class="input" name="name" type="text" value="" size="30" /><br />
<span id="name_validation" class="error_message"></span>
</div>
<div class="row">
<label class="required" for="email">Your email:</label><br />
<input id="email" class="input" name="email" type="text" value="" size="30" /><br />
<span id="email_validation" class="error_message"></span>
</div>
<div class="row">
<label class="required" for="message">Your message:</label><br />
<textarea id="message" class="input" name="message" rows="7" cols="30"></textarea><br />
<span id="message_validation" class="error_message"></span>
</div>
<input id="submit_button" type="submit" value="Send email" />
</form>
</center>
</body>
</html>