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>
<body>
<img src="logo.png">
<table border="2" cellspacing="3">
<caption>Weekly Timetable-Indhu Priya(24007533)</caption>
<tr bgcolor="pink" align="center">
<th>Day/Time</th>
<th> Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
<tr align="centre">
<td>8-10</td>
<td colspan="3">Free</td>
<td>Comm E</td>
<td>FWAD</td>
<td>Free</td>
</tr>
<tr align="center">
<td>10-12</td>
<td>Comm E</td>
<td>DE</td>
<td>Chem</td>
<td>PQM</td>
<td>Chem</td>
<td>pIoT</td>
</tr>
<tr align="centre">
<td>12-1</td>
<td colspan="6">LUNCH</td>
</tr>
<tr align="centre">
<td>1-3</td>
<td>FWAD</td>
<td>FWAD</td>
<td>MENT Meet</td>
<td>CDS</td>
<td>DE</td>
<td>PQM</td>
</tr>
<tr align="centre">
<td>3-5</td>
<td>Free</td>
<td>pIoT</td>
<td colspan="4">Free</td>
</tr>
</table>
<table border="2" cellpadding="2">
<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 and Development</td>
</tr>
<tr>
<td>2</td>
<td>19CY205</td>
<td>Basic Principles of Chemistry</td>
</tr>
<tr>
<td>3</td>
<td>19EN101</td>
<td>Communicative English</td>
</tr>
<tr>
<td>4</td>
<td>19EE404</td>
<td>Digital Electronics</td>
</tr>
<tr>
<td>5</td>
<td>ECA-M</td>
<td>Mentor Meet</td>
</tr>
<tr>
<td>6</td>
<td>19MA222</td>
<td>Prabablity and Queueing Models</td>
</tr>
<tr>
<td>7</td>
<td>19CS420</td>
<td>Prototyping of Iot</td>
</tr>
</table>
</table>
</body>
</html>
'
The program for creating slot timetable using basic HTML tags is executed successfully.
.png)