-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
28 lines (22 loc) · 1.1 KB
/
form.html
File metadata and controls
28 lines (22 loc) · 1.1 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
<form method = "post" action = "submit.php">
<input type="text" name="email"/>
<input type="password" name="password"/> <br/>
<input type="radio" name="gender" value="male"/> Male
<input type="radio" name="gender" value="female"/> Female
<input type="radio" name="gender" value="other"/> Other <br/>
<input type="checkbox" name="interest" value="cricket"/> Cricket
<input type="checkbox" name="interest" value="football"/> Football <br/>
<input type="checkbox" name="interest" value="basketball"/> Basketball <br/>
<input type="checkbox" name="interest" value="chess"/> Chess <br/>
<select name="city">
<option value="Kolkata"> Kolkata </option>
<option value="Delhi"> Delhi </option>
<option value="Mumbai"> Mumbai </option>
<option value="Bangalore"> Bangalore </option>
<option value="Outstation"> Outstation</option>
</select> <br/>
<textarea name="address" rows="6" cols="50">
Write your address...
</textarea> <br/>
<input type="submit" name="submit" value="Submit"/>
</form>