-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
48 lines (36 loc) · 1.2 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Contact Information</h1>
<p>
Home Address: <em><a href="https://www.google.com/maps/place/4707+Brockington+Rd+NW,+Calgary,+AB+T2L+1R5/data=!4m2!3m1!1s0x53716f6af5570fe5:0xb40215d1108f255f?sa=X&ved=2ahUKEwjrtc6p-rz3AhWQJzQIHbfNBAkQ8gF6BAgVEAE">4707 Brockington Rd NW, Calgary, Alberta, T2L 1R5</a></em>
<br>
Phone Number: <em>(403)404-1474</em>
<br>
E-mail Address: <em>[email protected]</em>
<br>
</p>
<hr>
<form action="mailto:[email protected]" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourName">
<br>
<label>Your E-mail:</label>
<input type="email" name="yourEmail">
<br>
<label>Do you want to sign up to e-mail list?</label>
<input type="checkbox">
<br>
<label>Your Message:</label>
<br>
<textarea name="yourMessage" id="" cols="20" rows="5"></textarea>
<br>
<input type="submit">
</form>
</body>
</html>