-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact me.html
27 lines (26 loc) · 1.02 KB
/
contact me.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 lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h1>Contact Me</h1>
<p>Chris Hosking</p>
<p>Phone: 0401 331 846</p>
<p>Email: <a href="mailto:chris.hosking@yahoo.com.au?subject=Web Developer">chris.hosking@yahoo.com.au</a></p>
<p><a href="https://twitter.com/Chris_Hosking">Twitter</a></p>
<p><a href="https://www.linkedin.com/in/chris-hosking-10b02278/">Linkedin</a></p>
<form class="" action="mailto:chris.hosking@yahoo.com.au" method="post">
<label>Name:</label>
<input type="text" name="yourname" value=""><br>
<label>Email:</label></label>
<input type="text" name="youremail" value=""><br>
<label>Message:</label>
<textarea name="yourmessage" rows="10" cols="30"></textarea><br>
<label>Would you like to be added to our mailing list?</label>
<input type="checkbox" name="" value="">
<input type="submit" name=""><br>
</form>
</body>
</html>