-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (28 loc) · 974 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact me</title>
</head>
<body>
<h1>Contact Me </h1>
<ol>
<p><em>My <strong>awesome </strong><a href="google.com">email:</a></em></p>
<p>my phone number = 6550</p>
<hr>
<form enctype="text/plain" action="mailto:[email protected]" method="post">
<label for="">Your name</label>
<input type="text" name="yourName" value=""><br>
<p>Do you want to sign up?</p>
<input type="checkbox" name="" value=""><br>
<label for="">Email</label>
<input type="email" name="yourEmail" value=""><br>
<label for="">Your Message</label><br>
<textarea name="yourMessage" rows="8" cols="50"></textarea><br>
<input type="submit" name=""><br>
<input type="date" name="" value=""><br>
<input type="range" name="" value="">
</form>
</ol>
</body>
</html>