-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (29 loc) · 1.59 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>registration page</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<form>
<h1>STUDENT REGISTRATION FORM</h1>
<div class=form1>
<table>
<tr>
<td><label class="label1">NAME</label></td> <td> <input class="input1" type="text" placeholder="Enter Name"></td></tr>
<tr><td><label class="label1">FATHER NAME</label></td> <td> <input class="input1" type="text" placeholder="Father Name"></td></tr>
<tr><td><label class="label1">ADDRESS</label></td> <td> <input class="input1" type="text" placeholder=Address name="a1"></td></tr>
<tr><td><label class="label1">GENDER</label></td> <td> <input class="input1" type="radio" name="r1"> MALE
<input class="input1" type="radio" name="r1">FEMALE</td></tr>
<tr><td><label class="label1">STATE</label></td> <td> <input class="input1" type="text" placeholder="State" name="s"></td></tr>
<tr><td> <label class="label1">CITY</label></td> <td> <input class="input1" type="text" placeholder="City" name="c"></td></tr>
<tr> <td> <label class="label1">PINCODE</label></td> <td> <input class="input1" type="text" placeholder="Pincode" name="p"></td></tr>
<tr><td><label class="label1">E-MAIL</label> </td> <td> <input class="input1" type="E-MAIL" placeholder="E-MAIL" name="email"></td></tr>
<tr><td><input class="input1" width="35px" height="35px" type="submit" value="submit"
></td><td>
<input class="input1" type="reset"></td></tr>
</table>
</div>
</form>
</body>
</html>