-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
57 lines (52 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head><title>FORMS</title></head>
<body style="background-color:#d6eeee">
<h1 align="center">REGISTRATION</h1>
<form action=" ">
<feildset style="#DAF7A6">
<table border="1px" width="30%" align="center">
<tr>
<th><label for="fname">FIRSTNAME</label></th>
<td><input type="text" id="fname" name="fname"></td>
</tr>
<tr>
<th><label for="lname">LASTNAME</label></th>
<td><input type="text" id="lname" name="lname"></td>
</tr>
<tr>
<th><label for="PASSWORD">PASSWORD</label></th>
<td><input type="password" id="PAS" name="PAS"></td>
</tr>
<tr>
<th><label for="GEN">GENDER</label>
<td><input type="radio" name="E2" value="0">MALE
<input type="radio" name="E2"value="0">FEMALE</td></th>
</tr>
<tr>
<th><label>QUALIFICATIONS</label></th>
<td><input type="checkbox" id="" name="">10<sup>th</sup>
<input type="checkbox" id="" name="">10+2
<input type="checkbox" id="" name="">degree
<input type="checkbox" id="" name="">PG
</td>
</tr>
<tr>
<th><label>YEAR OF BIRTH</label></th>
<td><select name=" year">
<option value="">SELECT</option>
<option value="YEAR">2000</option>
<option value="">1999</option>
<option value="">1998</option>
<option value="">1997</option>
<option value="">1996</option>
<option value="">1995</option>
</SELECT>
</td>
</tr>
</table>
<center><input type="submit" value="REGISTER"></center>
</FORM>
<a href="www.registrationhelp.com">help...</a>
</body>
</html>