[go: up one dir, main page]

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

!doctype HTML

The document presents a weekly time table for classes, detailing subjects scheduled for each period from Monday to Saturday. Each day includes specific subjects, with designated times for lunch, lab sessions, library, and sports. The table is formatted with a clear layout, highlighting special activities and periods.

Uploaded by

mukesh140182
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)
6 views2 pages

!doctype HTML

The document presents a weekly time table for classes, detailing subjects scheduled for each period from Monday to Saturday. Each day includes specific subjects, with designated times for lunch, lab sessions, library, and sports. The table is formatted with a clear layout, highlighting special activities and periods.

Uploaded by

mukesh140182
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

<!

DOCTYPE html>
<html>

<head>
<title>Time Table</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
margin: 0;
padding: 0;
}

h1 {
text-align: center;
color: #343a40;
}

table {
border-collapse: collapse;
margin: 20px auto;
background-color: #fff;
border: 2px solid #dee2e6;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

th,
td {
border: 1px solid #dee2e6;
padding: 10px;
text-align: center;
}

th {
background-color: #f2f2f2;
color: #343a40;
}

.highlight {
background-color: #f8f9fa;
}

.special {
background-color: #f0f0f0;
}
</style>
</head>

<body>
<h1>TIME TABLE</h1>
<table>
<tr>
<th>Day/Period</th>
<th>I<br>9:30-10:20</th>
<th>II<br>10:20-11:10</th>
<th>III<br>11:10-12:00</th>
<th>12:00-12:40</th>
<th>IV<br>12:40-1:30</th>
<th>V<br>1:30-2:20</th>
<th>VI<br>2:20-3:10</th>
<th>VII<br>3:10-4:00</th>
</tr>
<tr>
<td class="highlight"><b>Monday</b></td>
<td>Eng</td>
<td>Mat</td>
<td>Che</td>
<td rowspan="6" class="special"><b>LUNCH</b></td>
<td colspan="3" class="special">LAB</td>
<td>Phy</td>
</tr>
<tr>
<td class="highlight"><b>Tuesday</b></td>
<td colspan="3" class="special">LAB</td>
<td>Eng</td>
<td>Che</td>
<td>Mat</td>
<td class="special">SPORTS</td>
</tr>
<tr>
<td class="highlight"><b>Wednesday</b></td>
<td>Mat</td>
<td>Phy</td>
<td>Eng</td>
<td>Che</td>
<td colspan="3">LIBRARY</td>
</tr>
<tr>
<td class="highlight"><b>Thursday</b></td>
<td>Phy</td>
<td>Eng</td>
<td>Che</td>
<td colspan="3" class="special">LAB</td>
<td>Mat</td>
</tr>
<tr>
<td class="highlight"><b>Friday</b></td>
<td colspan="3" class="special">LAB</td>
<td>Mat</td>
<td>Che</td>
<td>Eng</td>
<td>Phy</td>
</tr>
<tr>
<td class="highlight"><b>Saturday</b></td>
<td>Eng</td>
<td>Che</td>
<td>Mat</td>
<td colspan="3">SEMINAR</td>
<td class="special">SPORTS</td>
</tr>
</table>
</body>

</html>

You might also like