forked from Pranavv213/WebDevForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
49 lines (32 loc) · 1.4 KB
/
form.html
File metadata and controls
49 lines (32 loc) · 1.4 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
<!DOCTYPE html>
<html>
<body>
<h1><strong><center>TRAVEL RESERVATION FORM</center></strong></h1>
<form><center>
<strong>Name<input type="text"></strong><br><br>
<strong>Age<input type="number"></strong><br><br>
<strong><label for="gender">Gender</label></strong><br>
Male<input type="radio" name="gender" id="male" value="male">
Female<input type="radio" name="gender" id="female" value="female">
Others<input type="radio" name="gender" id="other" value="other"><br><br>
<strong><label for="Source">Source</label></strong>
<select>
<option value="Bangalore">Bangalore</option>
<option value="Mumbai">Mumbai</option>
<option value="Kolkata">Kolkata</option>
<option value="Kashmir">Kashmir</option>
</select><br><br>
<strong><label for="Destination">Destination</label></strong>
<select>
<option value="Bangalore">Bangalore</option>
<option value="Mumbai">Mumbai</option>
<option value="Kolkata">Kolkata</option>
<option value="Kashmir">Kashmir</option>
</select><br><br>
<strong>Pincode<input type="text"></strong><br><br>
<strong>Email<input type="text"><strong><br><br>
<input type="submit">
<button type="button">Cancel</button>
</center></form>
</body>
</html>