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>
slottable
</title>
</head>
<body>
<center>
<img src="/static/logo.png" height="100" width="540">
</center>
<br>
<table align="center" width="540" cellspacing="2" border="5" bgcolor="cyan">
<caption><b>SLOT TIME TABLE-SATHEESWARI.S(25017493)</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>
<th bgcolor="yellow">SATURDAY</th>
</tr>
<tr align="center">
<th bgcolor="red">8-10</th>
<td bgcolor="navy">FWAD</th>
<td bgcolor="navy">FWAD</th>
<td bgcolor="navy">FREE</th>
<td bgcolor="navy">PYTHON</th>
<td bgcolor="navy">FWAD</th>
<td bgcolor="navy">DATA SCIENCE</th>
</tr>
<tr align="center">
<th bgcolor="red">10-12</th>
<td bgcolor="navy">PYHTON</td>
<td bgcolor="navy">DATA SCIENCE</td>
<td bgcolor="navy">FREE</td>
<td bgcolor="navy">PYTHON</td>
<td bgcolor="navy">FREE</td>
<td bgcolor="navy">FREE</td>
</tr>
<tr align="center">
<th bgcolor="red">12-1</th>
<td bgcolor="navy">LUNCH</td>
<td bgcolor="navy">LUNCH</td>
<td bgcolor="navy">LUNCH</td>
<td bgcolor="navy">LUNCH</td>
<td bgcolor="navy">LUNCH</td>
<td bgcolor="navy">LUNCH</td>
</tr>
<tr align="center">
<th bgcolor="red">1-3</th>
<td bgcolor="navy">FWAD</td>
<td bgcolor="navy">FWAD</td>
<td bgcolor="navy">FREE</td>
<td bgcolor="navy">FREE</td>
<td bgcolor="navy">DATA SCIENCE</td>
<td bgcolor="navy">FREE</td>
</tr>
<tr align="center">
<th bgcolor="red">3-5</th>
<td bgcolor="navy">FREE</td>
<td bgcolor="navy">DATA SCIENCE</td>
<td bgcolor="navy">PYHTON</td>
<td bgcolor="navy">FREE</td>
<td bgcolor="navy">PYTHON</td>
<td bgcolor="navy">DATA SCIENCE</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(FWAD)</td>
</tr>
<tr>
<td align='center'>2.</td>
<td align='center'>19AI304</td>
<td>PYTHON PROGRAMMING</td>
</tr>
<tr>
<td align='center'>3.</td>
<td align='center'>19AI403</td>
<td>INTRODUCTION OF DATA SCIENCE</td>
</tr>
</table>
</body>
</html>
The program for creating slot timetable using basic HTML tags is executed successfully.
.png)