-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-info.html
30 lines (29 loc) · 952 Bytes
/
contact-info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Danielle Maraffino Contact Information</title>
</head>
<body>
<h2>Contact Information</h2>
<ul>
<li>Email: [email protected]</li>
<li>Phone: (123) 456 7890</li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/danielle-maraffino-6426b6204">yay new website</a></li>
</ul>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name: </label>
<input type="name" name="YourName">
<br>
<label>Your Email: </label>
<input type="email" name="YourEmail">
<br>
<label>Message: </label>
<br>
<textarea name="YourMessage" id="" cols="27" rows="7"></textarea>
<br>
<input type="submit">
</form>
</body>
</html>