PART – B HTML
1.HTML PROGRAM 1
Write an HTML program to create study time table.
<html>
<head>
<title>study time table</title>
</head>
<body bgcolor="yellow" text="black"><B>
<center><h2>SRI CHAITANYA PU COLLEGE</h2>
<h3>STUDY TIME TABLE</h3>
<table border="8" bgcolor="red">
<tr>
<th>DAYS</th>
<th>10:00 -11:00</th>
<th>11:00-12:00</th>
<th rowspan="7" > Break </th>
<th>12:30-1:30</TH>
<th>1:30-2:30</th>
</th>
<tr>
<th>MONDAY</th>
<th>Lan-1</th>
<th>comp.sc</th>
<th>ENG</th>
<th> KAN</th>
</tr>
<tr>
<th>TUESDAY</th>
<th>Lan-2</th>
<th>ENG</th>
<th>Com.Sc</th>
<th> ACC</th>
</tr>
<tr>
<th>WEDNESDAY</th>
<th>Acc</th>
<th>COMPSC</th>
<th>MATH</th>
PART – B HTML
<th>Lan-1</th>
</tr>
<tr>
<th>THURSDAY</th>
<th>SOC SICENCE</th>
<th>Comp.Sc</th>
<th>ENG</th>
<th>Lan-2</th>
</tr>
<tr>
<th>FRIDAY</th>
<th>IP</th>
<th>PE</th>
<th>Comp.Sc</th>
<th>Lan-1</th>
</tr>
<tr>
<th>SATURDAY</th>
<th>Lan-2</th>
<th>PE</th>
<th>PHY</th>
<th>Comp.Sc</th>
</tr>
</table>
</body>
</html>
2. HTML PROGRAM 2
Create an HTML program with table and form.
<html>
<head>
<title>Student Application Form</title>
</head>
<body bgcolor="yellow" text="black"><b>
<font size = "18">
<form></b>
<h3 align="center"><U>PUC Application form</u></h3>
<br>
<table border = "3" align="center">
PART – B HTML
<font size = "14">
<tr>
<td><b> Student name:</b>
<td><input type="text" name="std"></td>
</tr>
<tr>
<td align="left"><b>Father name:</b></td>
<td><input type="text" name="Father name:">
</tr>
</td>
<tr>
<td align="left"><b>Mother name:</B></td>
<td><input type="text" name="Mother name">
</tr>
</td>
<tr>
<td align="left"><b>Gender</b> </td>
<td><input type="radio" name="Sex" value =
"Male">Male
<input type="radio" name="Sex" value =
"Female">Female</td>
</tr>
<tr>
<td><b>Address:</b></td>
<td><input type="text" name="Add":></td>
</tr>
<tr>
<td><b>Contact number</b>:</td>
<td><input type="text" ></td>
</tr>
<tr>
<td><b>Select Course:</b></td>
<td align="left" name="course">
<br>
<select name="drop down">
<option value="PCMC">PCMC</option>
<option value="PCMB">PCMB</option>
<option value="PCME">PCME</option>
</tr>
<tr>
<td align="left"><b>Languages known:</b> </td>
PART – B HTML
<td><input type="checkbox" name="Subject" value
=" Kan">Kannada
<input type="checkbox" name="Subject" value
="Hin">Hindi
<input type="checkbox" name="Subject" value
="Eng">English
</tr>
<tr>
<td align="right"><input type="button"
value="Submit" align="right"></td>
<td align="left"><input type="reset" value="Reset"
align="center"></td>
</tr>
</table>
</form>
</body>
</html>
PART – B HTML