-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
37 lines (27 loc) · 1.02 KB
/
Contact.html
File metadata and controls
37 lines (27 loc) · 1.02 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
37
<!DOCTYPE html>
<html>
<head>
<title>Contact Angela Preziuso</title>
<a href="ppp.html" </a>Home</a> <a href="About.html" </a>About</a> <a href="Pictures.html" </a>Pictures</a>
</li>
</head>
<body>
<h1>If you need to contact me</h1>
<ul>
<li>Phone: <a href="tel:+3023798629">(302) 379-8629</a></li>
<li>Email: <a href="mailto: angelapreziuso23@gmail.com">angelapreziuso23@gmail.com</a></li>
</ul>
<div id="Contact">
<form id="contact">
<label for="name">Your name:</label><br />
<input id="name" name="name" type="text" value="" size="30" /><br />
<label for="email">Your email:</label><br />
<input id="email" name="email" type="text" value="" size="30" /><br />
<label for="message">Your message:</label><br />
<textarea id="message" name="message" rows=3 cols=28></textarea><br />
</div>
<input id="submit" type="submit" value="Send" />
</form>
</div>
</body>
</html>