You are on page 1of 2

<html>

<body>
<h1><center>Application Form</center></h1>
<form>

First Name:<input type="text" value="ram"><br><br>


Last Name:<input type="text" value="kumar"><br><br>
Password:<input type="password"><br><br>
Hidden Field:<input type="hidden"><br><br>

Address:<textarea rows="5" cols="20">


My College Name,
My College Address

</textarea>

<br><br>
<input type="checkbox" value="physics">Physics<br>
<input type="checkbox" value="chemistry">Chemistry<br>
<input type="checkbox" value="mathematics">Mathematics<br><br>
Gender:<br>

<input type="radio" value="male" name="gender">Male<br>


<input type="radio" value="female" name="gender">Female<br><br>
<select>
<option value="PU-I">PU-I</option>
<option value="PU-II">PU-II</option>
</select><br><br>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
<html>
<body>

<table border="2">
<tr>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>

<tr>
<td>physics</td>
<td>chemistry</td>
<td>mathematics</td>
<td>biology</td>
<td>kannada</td>
<td>sanskrit</td>
</tr>

<tr>
<td>english</td>
<td>hindi</td>
<td>computer science</td>
<td>mathematics</td>
<td>chemistry</td>
<td>physics</td>
</tr>

<tr>
<td>sanskrit</td>
<td>kannada</td>
<td>biology</td>
<td>physics</td>
<td>chemistry</td>
<td>mathematics</td>
</tr>

<tr>
<td>kannada</td>
<td>physics</td>
<td>mathematics</td>
<td>biology</td>
<td>chemistry</td>
<td>mathematics</td>
</tr>

</table>
</body>

You might also like