-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactus.html
More file actions
58 lines (52 loc) · 1.52 KB
/
Contactus.html
File metadata and controls
58 lines (52 loc) · 1.52 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<h1>Contact Us</h1>
</head>
<body>
<form method="GET">
First Name: <input type ="text" name="First Name"><br>
Last Name: <input type ="text" name="Last Name"><br>
Email: <input type ="email" required name="Email"><br>
Password: <input type ="password" min="5" name="Password"><br>
Date of Birth: <input type="date" name="Date of Birth"><br>
Mobile Number: <input type ="Number" name="Mobile Number"><br>
Gender: <br>
<input type ="radio" name="Gender" value="Male">Male<br>
<input type ="radio" name="Gender" value="Female">Female<br>
<input type ="radio" name="Gender" value="other">Other<br>
Car: <br>
<input type ="Checkbox" name="Car" value="Hyundai">Hyundai<br>
<input type ="Checkbox" name="Car" value="Volkswagen">Volkswagen<br>
<input type ="Checkbox" name="Car" value="Suzuki">Suzuki<br>
Pets:<br>
<select name="Pets">
<option value ="cat" >Cat</option>
<option value ="dog" >Dog</option>
<option value ="cow" >Cow</option>
<option value ="fish">Fish</option>
</select><br>
<input type="submit" value="Contact Us">
<input type="reset">
</form>
<a href="index.html"><h2>Go Home</h2></a>
</body>
</html>
<!--
First+Name=Lulu
&Last+Name=lala
&Email=lululala%40testmail.com
&Password=12345
&Date+of+Birth=2003-12-01
&Mobile+Number=123456789
&Gender=on&Car=on
?First+Name=fake
&Last+Name=new
&Email=newfake%40gmail.com
&Password=12345
&Date+of+Birth=2018-07-14
&Mobile+Number=1234567823
&Gender=Female
&Car=Hyundai
&Pets=dog-->