-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab2q3.html
83 lines (67 loc) · 2.77 KB
/
lab2q3.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<html>
<head>
<title>
Registration form
</title>
<center>
<h1> KINDLY FILL THE BELOW FORM</h1>
</center>
</head>
<body>
<form>
<p>
<label for="Email id"><b>Email id</b></label>
<input type="text" placeholder="Email id" name="Email id" id="Email id" required />
</p>
<p>
<label for="Full Name"><b> Full Name </b></label>
<input type="text" placeholder="Full Name" name="NAME" id="name" required />
</p>
<p>
<b> Gender</b><br>
<input type="radio" id="Male" name="gender" value="Male">
<label for="html">Male</label><br>
<input type="radio" id="Female" name="gender" value="Female">
<label for="css">Female</label><br>
</p>
<p>
<b>Choose your subjects that you want to study</b>
<br>
<input type="checkbox" id="Subject 1" name="Subject 1" value="Subject 1">
<label for="vehicle1"> WT</label><br>
<input type="checkbox" id="Subject 2" name="Subject 2" value="Subject 2">
<label for="vehicle2"> COA</label><br>
<input type="checkbox" id="Subject 3" name="Subject 3" value="Subject 3">
<label for="vehicle3"> DBMS</label><br>
<input type="checkbox" id="Subject 4" name="Subject 4" value="Subject 4">
<label for="vehicle1"> AFL</label><br>
<input type="checkbox" id="Subject 5" name="Subject 5" value="Subject 5">
<label for="vehicle2"> PDC</label><br>
<input type="checkbox" id="Subject 6" name="Subject 6" value="Subject 6">
<label for="vehicle3"> OS</label><br>
</p>
<p>
<b>SELECT YOUR SEMESTER</b>
<br>
<select name="SEMESTER" id="SEMESTER">
<option value="1">1st</option>
<option value="2">2nd</option>
<option value="3">3rd</option>
<option value="4">4th</option>
<option value="5">5th</option>
<option value="6">6th</option>
<option value="7">7th</option>
<option value="8">8th</option>
</select>
<p>
<label for="password"><b>Password</b></label>
<input type="password" placeholder="Enter password" name="passwrod" id="password" required />
</p>
<p>
<label for="password"><b>Retype Password</b></label>
<input type="password" placeholder="Enter password" name="passwrod" id="password" required />
</p>
<button type="submit" form="form1" value="Submit">Submit</button>
</form>
</body>
</html>