-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
32 lines (26 loc) · 980 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact Details</title>
</head>
<body>
<h1>Contact Details</h1>
<p><em>You can contact me by the information below.</em></p><br>
<p>Address: <strong>Horinouchi, Hachioji, Tokyo.</strong></p>
<p>Phone No.: <strong>090-5426-8297</strong></p>
<p>Email Address: <strong>[email protected]</strong></p>
<hr>
<br>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your name: </label>
<input type="text" name="yourName" value=""><br><br>
<label>Your email: </label>
<input type="email" name="yourEmail" value=""><br><br><br>
<label>Your message: </label><br><br>
<textarea name="yourMsg" rows="10" cols="50"></textarea><br><br>
<input type="submit" name="">
</form>
<p><a href="index.html">Back</a></p>
</body>
</html>