-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
39 lines (39 loc) · 1.45 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Contact Stephen: Ask a question or send comments</title>
<link href="/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="main">
<!--#include virtual="/navmenu.html" -->
<div class="content contact">
<h2>E-mail Stephen</h2>
<form action="https://formspree.io/[email protected]" method="POST">
<table class="contact-details">
<tr>
<td class='label'><strong>Name:</strong></td>
<td><input type=text name="realname" class="inputtext" placeholder="Your Name"></td>
</tr>
<tr>
<td class='label'><strong>E-mail:</strong></td>
<td><input type=text name="email" class="inputtext" placeholder="[email protected]"></td>
</tr>
<tr>
<td class='label'><strong>Subject:</strong></td>
<td><input type=text name="_subject" class="inputtext" placeholder="Nice website!"></td></tr>
<tr>
<td class='label'><strong>Message:</strong></td>
<td><textarea rows=10 cols=50 name="user_message" class="inputtext" placeholder="That rug really tied the room together."></textarea></td>
</tr>
</table>
<input type=hidden name="_next" value="http://stephenchudleigh.com/">
<div class="buttons">
<input type="submit" value="Send Message">
<input type="reset">
</div>
</form>
</div>
</div>
</body>
</html>