DEEP

DEEP

nac

<!DOCTYPE html>

<html>

<body bgcolor="black" text="white">

<form>

<table border="1" align="center">

<tr>

<td>Name of Student</td>

<td><input type="text"></td>

</tr>

<tr>

<td>Phone Number</td>

<td><input type="number"></td>

</tr>

<tr>

<td>Address</td>

<td><textarea rows="4" cols="15"></textarea></td>

</tr>

<tr>

<td>Gender</td>

<td><input type="radio" name="r1">Male

<input type="radio" name="r1">Female</td>

</tr>

<tr>

<td>Qualification</td>

<td><select>

<option>10th Pass</option>

<option>Plus Two</option>

<option>Degree</option>

</td>

</tr>

<tr>

<td>Languages Know</td>

<td><input type="checkbox">Malayalam

<input type="checkbox">Hindi

<input type="checkbox">English</td>

</tr>

<tr>

<td><input type="submit" value="SUBMIT"></td>

<td><input type="reset" value="RESET"></td>

</tr>

</form>

</table>

</body>

</html>

Report Page