-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-me.html
More file actions
36 lines (35 loc) · 1.01 KB
/
contact-me.html
File metadata and controls
36 lines (35 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/topmenu.css">
<link rel="stylesheet" href="/css/styles.css">
<title>Document</title>
</head>
<body>
<div id="topmenu">
<a href="/index.html">Home</a>
<a href="/contact-me.html">Contact Me</a>
<a href="/beginning.html">The Beginning</a>
<a href="/lessons.html">Summary of Lessons</a>
<a href="/library.html">My Personal Library</a>
</div>
<div id=contactpage>
<h1>Contact Me</h1>
<form action="mailto:jason.amschler@gmail.com" method="POST" enctype="text/plain">
<p>
<label for="">Your Name:</label>
<input type="text" name="yourName" value="">
</p>
<p>
<label for="">Your Email Address</label>
<input type="email" name="yourEmail" value="">
</p>
<p>
<input type="submit">
</p>
</form>
</div>
</body>
</html>