-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
49 lines (49 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
</head>
<body>
<table valign="top">
<tr>
<td align="center">
<h1>Get In Touch With My Roots</h1>
<p>In case you were wondering whether or not a head of lettuce has an email address,</p>
<p>I'm here to tell you that <em><strong>no</strong></em>, it doesn't.</p>
<p>However, I am not a head of lettuce, I am a developer.</p>
</td>
</tr>
<tr>
<td align="center">
<p>Given the information above, you can contact me at:</p>
<p><strong>[email protected]</strong></p>
<p><strong>420-0069</strong></p>
<p><strong>420 Lettuce Ln</strong></p>
</td>
</tr>
<tr>
<td align="center">
<p><strong>Enter your information below:</strong></p>
<p>I'll write back as soon as I'm able to type...</p>
<p>afterall I'm a head of lettuce...</p>
<p>and lettuce can't use a computer...</p>
<p>What were you thinking?</p><br>
</td>
</tr>
</table>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourName"><br>
<label>Your Email:</label>
<input type="email" name="yourEmail"><br>
<label>Message:</label><br>
<textarea name="yourMessage" rows="8" cols="40"></textarea><br>
<input type="submit" value="submit">
</form>
<hr />
<a href="./index.html">Home</a>
</body>
</html>