Write a HTML program to create your time table
Write a HTML program to create your time table
<html>
<head>
<title> Time Table</title>
</head>
<body>
<h1 align="center" style="color:red">
Devnar Degree College for the blind </h1>
<h2 align="center" style="color:red">
B.A computers Time Table </h2>
<center>
<table border="2" bordercolor="red" rules="all"
height="60%"
width="60%" style="font-size:17px">
<tr align="center">
<th >Group</th>
<th>9:00 to 9:45</th>
<th>9:45 to 10:30</th>
<th>10:30 to 11:15</th>
<th rowspan="4" style="writing-mode:vertical-rl">Break</th>
<th>11:25 to 12:10</th>
<th>12:10 to 01:00</th>
</tr>
<tr align="center" width="200">
<th>B.A</th>
<td>English </td>
<td>Computer Science</td>
<td>Economics </td>
<td>political science </td>
<td>Second Languages</td>
</tr>
<tr align="center" width="200">
<th>Bcom</th>
<td>Computer Science</td>
<td>Commerce</td>
<td>Accounts</td>
<td>English</td>
<td>Second Languages</td>
</tr>
<tr align="center" width="200">
<th>Bsc</th>
<td>Statistics</td>
<td>Mathematics</td>
<td>Computer Science</td>
<td>English</td>
<td>Second Languages</td>
</tr>
</table>
</center>
</body>
</html>