-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
27 lines (22 loc) · 900 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>Contact Me</h1>
<p>Please fill out this form and I will get back to you as soon as possible.</p>
<form action="/contact" method="post">
<label for="fname">First Name</label><br>
<input type="text" id="fname" name="fname" required><br>
<label for="lname">Last Name</label><br>
<input type="text" id="lname" name="lname" required><br>
<label for="email">Email</label><br>
<input type="email" id="email" name="email" required><br>
<label for="message">Message</label><br>
<textarea id="message" name="message" required></textarea><br>
<input type="submit" value="Submit">
</form>
</body>
</html>