-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
62 lines (55 loc) · 2.03 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact Info</title>
</head>
<body>
<h3>You can contact me via any of the following.</h3>
<ul>
<li>My phone number : 9182586082</li>
<li>My email address : [email protected]</li>
</ul>
<hr>
<h3>Now Let Me Know you</h3>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Your name" value=""><br>
<p><b>Check the boxes which describe you.</b></p>
<input type="checkbox" name="" value="">
<label>I love reading books.</label><br>
<input type="checkbox" name="" value="">
<label>I love watching movies.</label><br>
<input type="checkbox" name="" value="">
<label>I love playing games.</label><br>
<input type="checkbox" name="" value="">
<label>I love animated movies.</label><br>
<input type="checkbox" name="" value="">
<label>I love anime.</label><br>
<label>Choose your favourite color :</label>
<input type="color" name="My favourite color" value=""><br>
<label>Date of Birth:</label>
<input type="date" name="This is when I born" value=""><br>
<label>Enter your email address :</label>
<input type="email" name="My email address" value=""><br>
<label>Gender :</label><br>
<table>
<tr>
<td><label>Male</label></td>
<td><input type="radio" name="" value=""><br></td>
</tr>
<tr>
<td><label>Female</label></td>
<td><input type="radio" name="" value=""><br></td>
</tr>
<tr>
<td><label>Other</label></td>
<td><input type="radio" name="" value=""><br></td>
</tr>
</table>
<label>Your message ! :</label><br>
<textarea name="My message to you" rows="8" cols="80"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>