-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
32 lines (26 loc) · 1.14 KB
/
contact.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Details</title>
</head>
<body>
<h1>My Contact Details <img src="images/contact-information.png" width="40" height="40"></h1>
<hr>
<p>Removed for personal reason</p>
<p>However, please test out the function below and click submit to be able to see my dev email for fun!✨</p>
<hr>
<form action="mailto:daboss88888@yahoo.com" method="post" enctype="text/plain" autofocus>
<label>Your Name:</label>
<input type="text" name="yourName" value=""><br>
<label>Your Email Address:</label>
<input type="email" name=yourEmail""><br>
<label>Your Message:</label>
<textarea name="yourMessage" rows="5" cols="30"></textarea><br>
<input type="submit">
</form>
</body>
</html>