-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
33 lines (28 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Conmtact</title>
</head>
<body>
<h1>Come to Alaska Baby!!!</h1>
<p>My address</p>
<p>Phone Number</p>
<p>My email</p>
<hr>
<form class="" action="mailto:proman@polarbearsinternational.df" method="post" enctype="text/plain">
<!--mailto in action opens up mail app
with the fields below as values present in the email(pre filled)
and enctype tells us about the encoding type in the email as plain text -->
<label>Your Name:</label>
<input type="text" name="Your Name" value=""><br>
<label>Your Email:</label>
<input type="email" name="Your Email" value=""><br>
<label>Your Message:</label><br>
<textarea name="Your Message" rows="10" cols="30"></textarea>
<input type="submit" name="">
</form>
<br>
<h3><a href="index.html">Home</a></h3>
</body>
</html>