To write a html webpage page to display your slot timetable.
Create a Django-admin Interface.
Create a static folder and inert HTML code.
Create a simple table using <table> tag in html.
Add header row using <th> tag.
Add your timetable using <td> tag.
Execute the program using runserver command.
<html>
<head>
<title>
My Timetable
</title>
</head>
<body>
<img src="/static/logo.png" width="530" align="center">
<h3>SLOT TIMETABLE-IJAS (25007615)</h3>
<table border="6" bgcolor="cyan" >
<tr bgcolor="yellow">
<th>Day/time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
</tr>
<tr align="center">
<th bgcolor="yellow">8-10</th>
<td>FWAD</td>
<td>FWAD</td>
<td>EN</td>
<td>PY</td>
<td>FWAD</td>
</tr>
<tr align="center">
<th bgcolor="yellow">10-12</th>
<td>EN</td>
<td>PY</td>
<td>PY</td>
<td>EN</td>
<td>EN</td>
</tr>
<tr align="center">
<th bgcolor="yellow">
12-1
</th>
<td colspan="6">
LUNCH
</td>
</tr>
<tr align="center">
<th bgcolor="yellow">1-3</th>
<td>FWAD</td>
<td>FWAD</td>
<td>MENTOR-MEET</td>
<td>FREE</td>
<td>EN</td>
</tr>
<tr align="center">
<th bgcolor="yellow">3-5</th>
<td>FREE</td>
<td>FREE</td>
<td>PY</td>
<td>FREE</td>
<td>PY</td>
</tr>
</table>
<br>
<table border="1">
<tr>
<th>S.No</th>
<th>Subject Code</th>
<th>Subject Name</th>
</tr>
<tr>
<td>1.</td>
<td>19AI414</td>
<td>Fundamentals of Web Application Development(FWAD)</td>
</tr>
<tr>
<td>2.</td>
<td>19AI304</td>
<td>Python Programming(PY)</td>
</tr>
<tr>
<td>3.</td>
<td>19EN101</td>
<td>English(EN)</td>
</tr>
</table>
</body>
</html>
The program for creating slot timetable using basic HTML tags is executed successfully.