To Write a html webpage page to display your timetable.
create a simple table using table tag
Add header row using th tag
Add your timetable
Execute the program
<!DOCTYPE html>
<html lang="en">
<head>
<title>Slot Timetable</title>
</head>
<body>
<center>
<img src="/static/images/logo.png" height="100" width="540">
</center>
<br>
<table align="center" width="540" cellspacing="2" cellpadding="4" border="5" bgcolor="cyan">
<caption><b>SLOT TIME TABLE - M.Harini (212222240035) </b></caption>
<tr align="center">
<th bgcolor="yellow">Day/Time</th>
<th bgcolor="yellow">Monday</th>
<th bgcolor="yellow">Tuesday</th>
<th bgcolor="yellow">Wednesday</th>
<th bgcolor="yellow">Thursday</th>
<th bgcolor="yellow">Friday</th>
</tr>
<tr align="center">
<th bgcolor="yellow">8-10</th>
<td>FREE SLOT</td>
<td>FREE SLOT</td>
<td>WEB</td>
<td>WEB</td>
<td>WEB</td>
</tr>
<tr align="center">
<th bgcolor="yellow">10-12</th>
<td>Python</td>
<td>FREE SLOT</td>
<td>Python</td>
<td>CN</td>
<td>Python</td>
</tr>
<tr>
<th bgcolor="yellow">12-1</th>
<td colspan="5" align="center">L U N C H</td>
</tr>
<tr align="center">
<th bgcolor="yellow">1-3</th>
<td>CN</td>
<td>Creative Skills</td>
<td>FREE SLOT</td>
<td>Python</td>
<td>Physics</td>
</tr>
<tr align="center">
<th bgcolor="yellow">3-5</th>
<td>Tranforms</td>
<td>Physics</td>
<td>FREE SLOT</td>
<td>Tranforms</td>
<td>FREE SLOT</td>
</tr>
</table>
<br>
<table align="center" cellspacing="2" cellpadding="4" border="2">
<tr align="center">
<th>S. No.</th>
<th>Subject Code</th>
<th>Subject Name</th>
</tr>
<tr>
<td align="center">1.</td>
<td align="center">19AI414</td>
<td>Fundamentals of Web Application Development (WEB)</td>
</tr>
<tr>
<td align="center">2.</td>
<td align="center">19EY702</td>
<td>Creative skills for communication</td>
</tr>
<tr>
<td align="center">3.</td>
<td align="center">19PH214</td>
<td>Physics for Quantum Computing(PHY)</td>
</tr>
<tr>
<td align="center">4.</td>
<td align="center">19CS406</td>
<td>Computer networks(CN)</td>
</tr>
<tr>
<td align="center">5.</td>
<td align="center"> 19Al301C</td>
<td>Python with linear algebra</td>
</tr>
<tr>
<td align="center">6.</td>
<td align="center"> 19MA219</td>
<td>Tranforms and its applications</td>
</tr>
</table>
</body>
</html>
The program for creating slot timetable is completed successfully.

