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

Write a HTML program to create your time table

The document is an HTML program that creates a timetable for Devnar Degree College for the Blind. It includes a header with the college name and the course title, followed by a table displaying the schedule for B.A, Bcom, and Bsc groups. The timetable outlines class subjects for specific time slots, including a break period.

Uploaded by

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

Write a HTML program to create your time table

The document is an HTML program that creates a timetable for Devnar Degree College for the Blind. It includes a header with the college name and the course title, followed by a table displaying the schedule for B.A, Bcom, and Bsc groups. The timetable outlines class subjects for specific time slots, including a break period.

Uploaded by

Vsarchana Qa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

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>

You might also like