-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
25 lines (25 loc) · 881 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Information</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>Contact Information</h3>
<p><strong>Address:</strong> 347 Olmsted Rd, Stanford, CA, 94305</p>
<p><strong>Cell:</strong> (650)-862-5093</p>
<p><strong>Email:</strong> emily_tomz@pomona.edu</p>
<hr>
<form action="mailto:emily_tomz@pomona.edu" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourName" value=""><br>
<label>Your Email:</label>
<input type="email" name="yourEmail" value=""><br>
<label>Your Message:</label><br>
<textarea name="yourMessage" rows="10" cols="80"></textarea><br>
<input type="submit" name="" value="Submit">
</form>
<a href="#"></a>
</body>
</html>