0% found this document useful (0 votes)
79 views2 pages

Vinay, HTML

The document contains an application form requesting personal information such as name, address, password, and interests. It also includes form elements for gender selection and program choice. Additionally, there is a table showing a sample weekly class schedule.

Uploaded by

Vinay Adari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
79 views2 pages

Vinay, HTML

The document contains an application form requesting personal information such as name, address, password, and interests. It also includes form elements for gender selection and program choice. Additionally, there is a table showing a sample weekly class schedule.

Uploaded by

Vinay Adari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 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