-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
29 lines (29 loc) · 1.04 KB
/
Copy pathcontact.html
File metadata and controls
29 lines (29 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Page</title>
</head>
<body>
<p>
<a href="file:///C:/Users/troy/Desktop/learnHTML/angelawebdev/html_personal_site/index2.html">back to home</a>
</p>
<h1>Contact Page</h1>
<h2>Troy Schmidt</h2>
<hr />
<ul>
<li><a href="mailto:tsmspace@gmail.com">email</a></li>
<li><a href="https://www.facebook.com/troyschmidt31/">facebook</a></li>
<li><a href="https://www.linkedin.com/in/troy-schmidt-6ab47269">linkedin</a></li>
</ul>
<form class="" action="mailto:tsmspace@gmail.com" method="post" style="text-align: right; margin-right: 40%;">
<label for="">Your Name</label>
<input type="text" name="" value=""><br>
<label for="">email</label>
<input type="email" name="" value=""><br>
<label for="">Your Message</label><br>
<textarea name="name" rows="10" cols="78"></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>