-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
31 lines (25 loc) · 842 Bytes
/
contacts.html
File metadata and controls
31 lines (25 loc) · 842 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My contact imformation</title>
</head>
<body>
My address: New York <br>
phone:0000000000 <br>
email: guyfyfhjfhjfhyjgjh@ffjf.com <br>
<hr>
<br>
<h4>If you want to submit your feedback then fill up the informations below and submit</h4>
<form action="mailto:guyfyfhjfhjfhyjgjh@ffjf.com" method="post" enctype="text/plain">
<label for="">Your name:</label>
<input type="text" name="your name" value="">
<br>
<label for="">Your email:</label>
<input type="email" name="your email" value=""><br>
<label for="">Your message:</label><br>
<textarea name="your message" rows="10" cols="35"></textarea> <br>
<input type="submit"><br>
</form>
</body>
</html>