HTML: Study Time Table
8 HTML program - Create a study time-table
<html>
<head>
<title> class time table </title>
</head>
<body text=darkblue color=white>
<center> <h3> m d r pu science college </h3>
<center> <h4> time table 2016-17 </h4>
<table border=10 bordercolor=red bgcolor=cornsilk cellspacing=2
cellpadding=15>
<caption> <b> ii puc pcmcs </b> <caption>
<tr bgcolor=peachpuff>
<td rowspan=2 align=center> <b> day </b> </td>
<td colspan=8 align=center> <b> timings </b></td>
</tr>
<tr bgcolor=red>
<th> 9.20 - 10.20 </th>
<th> 10.20 - 11.20 </th>
<th> 11.20 - 11.30 </th>
<th> 11.30 - 12.30 </th>
<th> 12.30 - 1.30 </th>
<th> 1.30 - 2.30 </th>
<th> 2.30 - 3.15 </th>
<th> 3.15 - 4.00 </th>
</tr>
<tr>
<td> monday </td>
<td> maths </td>
<td> physics </td>
<td rowspan=6 align=”center”>short break</td>
<td> chemistry </td>
<td> comp sci </td>
<td rowspan=6 align=center>lunch break</td>
<td colspan=2align=center><………comp sci lab…..> </td>
</tr>
<tr>
<td>tuesday</td>
<td> physics </td>
<td> maths </td>
<td> chemistry </td>
<td> english </td>
<td colspan=2 align=center><………physics lab……></td>
</tr>
<tr>
<td> wednesday </td>
<td> comp sci </td>
<td> physics </td>
<td> maths </td>
<td> kannada </td>
<td colspan=2 align=center><……chemistry lab….></td>
</tr>
<tr>
<td> thrusday </td>
<td> maths </td>
<td> kannada </td>
<td> physics </td>
<td> english </td>
<td colspan=2 align=center><………comp sci lab…..> </td>
</tr>
<tr>
<td>friday </td>
<td>english </td>
<td>maths </td>
<td>physics </td>
<td>comp sci </td>
<td>chemistry </td>
<td>kannada </td>
</tr>
<tr>
<td> saturday </td>
<td> maths </td>
<td> english </td>
<td> chemistry </td>
<td> comp sci </td>
<td colspan=2 align=center><……special class…..> </td>
</tr>
</table>
</center>
</body>
</html>
Comments
Post a Comment