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>
<title>SLOT TIMETABLE</title>
<body>
<center>
<table border="5" bgcolor="pink" cell spacing="10" cellpadding="10">
<caption>SLOT TIME TABLE-JANANI S (23013409)</caption>
<img src = "/static/logo.png" height="100" width="540">
<tr>
<TR bgcolor="orange">
<th>Day/Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
</TR>
<tr>
<th bgcolor="orange">8-10</th>
<td>FREE SLOT</td>
<td>PROB</td>
<td>FWAD</td>
<td>FREE SLOT</td>
<td>PYTHON</td>
</tr>
<tr>
<th bgcolor="orange">10-12</th>
<td>FREE SLOT</td>
<td>PYTHON</td>
<td>PHYSICS</td>
<td>FWAD</td>
<td>PROB</td>
</tr>
<tr>
<th bgcolor="orange">1-3</th>
<td>FREE SLOT</td>
<td>FREE SLOT</td>
<td>FREE SLOT</td>
<td>SOFT SKILLS</td>
<td>FWAD</td>
</tr>
<tr>
<th bgcolor="orange">3-5</th>
</tr>">3-5</th>
<td>FREE SLOT</td>
<td>FREE SLOT</td>
<td>PYTHON</td>
<td> PYTHON</td>
<td>PHYSICS</td>
</tr>
</table>
<br>
<table>
<table border="5" cell spacing="10" cellspading="15">
<tr>
<th>S.NO</th>
<th>SUBJECT CODE</th>
<th>SUBJECT NAME</th>
</tr>
<tr>
<th>1</th>
<td>19A1414</td>
<td>FUNDAMENTALS OF WEB APPLICATION DEVELOPMENT(FWAD)</td>
</tr>
<tr>
<th>2</th>
<td>19MA222</td>
<td>PROBABILITY AND QUEUEING THEORY(PQ)</td>
</tr>
<tr>
<th>3</th>
<td>19AI301C</td>
<td>PYTHON AND LINEAR ALGEBRA(PYTHON)</td>
</tr>
<tr>
<th>4</th>
<td>19PH214</td>
<td>PHYSICS AND QUANTUM COMPUTING(PQC)</td>
</tr>
<tr>
<th>5</th>
<td>19EY701</td>
<td>SOFT SKILLS(SS)</td>
</tr>
</table>
</body>
</center>
</head>
</html>
The program for creating slot timetable using basic HTML tags is executed successfully.
.png)