registration form
<html>
<body>
<form name="first">
<table>
<caption>Registration Form</caption>
<tr>
<td>Full name:</td>
<td><input type="text" name="fname" size=50 maxlength=100 placeholder="Enter name"></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="email" name="pwd" size=20> </td>
<tr>
<td>address:</td>
<td> <textarea name="add" row=5 cols=50> </textarea></td>
</tr>
<tr>
<td>Date of Birth:</td>
<td><input type="date"></td>
</tr>
<tr>
<td>Subject:</td>
<td>
MATHS
<input type="checkbox" name="Maths">
SCIENCE
<input type="checkbox" name="science">
MARATHI
<input type="checkbox" name="Marathi">
HINDI
<input type="checkbox" name="Hindi"></td>
</tr>
<tr>
<td>class:</td>
<td>
FYBSCIT
<input type="radio" name="std" value="FY">
SYBSCIT
<input type="radio" name="std" value="SY">
TYBSCIT
<input type="radio" name="std" value="TY">
</td>
</tr>
<tr>
<td>City:</td>
<td><select name="city" size="1">
<option>Mumbai</option>
<option>Pune</option>
<option>Nasik</option>
<option>Delhi</option>
<option>Bangalore</option>
</select>
</td>
<td> <input type="submit" value="submit">
</td>
<td><input type="reset" value="clear"></td>
</tr>
</table>
</form>
</body>
</html>