-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathForm200319.html
59 lines (48 loc) · 1.77 KB
/
Form200319.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css2.css">
<script src="jsprog1.js"></script>
</head>
<body>
<h1>PERSONAL INFORMATION ENTRY</h1>
<form>
<label>First Name :</label><input type="TEXT" name="name"><br>
<label>Email : </label> <input type="email" name="mailid"> </br>
<label>Gender </label> <br>
<input type="radio" name="gender" id = "option1" value="male" checked> Male
<input type="radio" name="gender" id = "option2" value="female"> Female
<br>
<label>Address:</label> <br>
<textarea rows="4" cols="50">
</textarea> <br>
<label>State </label><br>
<select id="state" name="state">
<option value="Punjab">Punjab</option>
<option value="Uttar Pradesh">Uttar Pradesh</option>
<option value="Bihar">Bihar</option>
<option value="AndraPradesh">Andra Pradesh</option>
</select> <br>
<label>Give Your Hobbies : </label>
<select name="Hobbies" size="4" multiple>
<option value="Music">Listening Music</option>
<option value="Games">Playing Games</option>
<option value="Movies">Watching Movies</option>
<option value="Books">Reading Books</option>
</select>
<br><br>
<label>Educational Qualification : </label><br>
<input type="checkbox" checked="checked" name="SSLC">SSLC
<input type="checkbox" name="HSC">HSC
<input type="checkbox" name="BSc">B.Sc.
<input type="checkbox" name="BTech">B.Tech.
<input type="checkbox" name="MTech">M.Tech.
<input type="checkbox" name="PhD">Ph.D
<br><br>
<label>Upload Your Biodata </label>
<input type="file" name="fileupload" value="fileupload" id="fileupload">
</br></br></br></br>
<button type="button" onclick="myFunction()">SUBMIT </button>
</form>
</body>
</html>