-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
43 lines (36 loc) · 1.41 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
<!DOCTYPE html>
<head>
<title>Contact Hunter</title>
<link rel="stylesheet" href="Portfolio.css">
</head>
<body>
<div class="link-container">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<div>
<h1>Contact</h1>
</div>
<html>
<body>
<div class="container">
<div id="contact-form" class="clearfix">
<h2>Get In Touch!</h2>
<h2>Please fill out the form to get in touch with me!</h2>
<form method="post" action="process.php">
<label for="name">Name: <span class="required">*</span></label>
<input type="text" id="name" name="name" value="" placeholder="John Doe" required="required" autofocus="autofocus" />
<label for="email">Email Address: <span class="required">*</span></label>
<input type="email" id="email" name="email" value="" placeholder="[email protected]" required="required" />
<label for="message">Message: <span class="required">*</span></label>
<textarea id="message" name="message" placeholder="Type your Message here" required="required" data-minlength="20"></textarea>
<span id="loading"></span>
<input type="submit" value="Send" id="submit-button" />
<p id="req-field-desc"><span class="required">*</span> indicates a required field</p>
</form>
</div>
</div>
</body>