-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm.html
69 lines (69 loc) · 2.56 KB
/
Form.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
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>
Registration Form
</title>
<center>
<h1>Form</h1>
</center>
</head>
<body bgcolor="ivory">
<hr>
<center>
<form>
<br>
<label for="fname">First Name : </label><br>
<input type="text" name="fname" id="fname" value="Enter First Name"><br>
<br>
<label for="lname">Last Name : </label><br>
<input type="text" name="lname" id="lname" value="Enter Last Name"><br>
<br>
<label for="dob">Date of Birth : </label><br>
<input type="date" date="dob" id="dob"><br>
<br>
<label for="gender">Gender : </label><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>
<br>
<label for="age">Age : </label><br>
<input type="number" name="age" id="age" value="0"><br><br>
<label for="cllg">Collage name : </label><br>
<select id="cllg" name="cllg">
<option value="" selected disabled hidden>Choose a college</option>
<option value="SIST">Sathyabama Institute Of Science and Technology</option>
<option value="SRM">SRM Institute of Science and Technology</option>
<option value="MIT">Madrass Institute of Technology</option>
<option value="COEG">College of Engineering,Guindi</option>
<option value="SJ">St. Joseph College of Engineering</option>
<option value="VIT">Vellore Institute of Technology,Chennai Campus</option>
<option value="JPR">Jeppiaar Engineering College</option>
<option value="HITS">Hindustan Instiute of Technology and Science</option>
<option value="IITM">Indian Institute of Technology</option>
</select>
<br><br>
<label for="city">City : </label><br>
<select id="city" name="city">
<option value="" selected disabled hidden>Choose a city</option>
<option value="new_delhi">New Delhi</option>
<option value="chennai">Chennai</option>
<option value="patna">Patna</option>
<option value="banglore">Banglore</option>
<option value="hydrabad">Hydrabad</option>
<option value="lucknow">Lucknow</option>
<option value="jaipur">Jaipur</option>
<option value="varanasi">Varanasi</option>
<option value="bhopal">Bhopal</option>
</select>
<br><br>
<button type="Submit" value="Submit">Submit</button>
<button type="reset" value="reset">Reset</button>
</form>
</center>
<hr>
</body>
<footer>
<center>© Adityanshu 2001-2020</center>
</footer>
</html>