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
tag in html.Add header row using
| tag.
Add your timetable using | tag.
Execute the program using runserver command.
<!DOCTYPE html>
<html>
<head>
<title>Slot Time Table - SHAKTHI BALAN V</title>
</head>
<body>
<img src="logo.png" height="150"width="400"border=6>
<h2>Saveetha Engineering College</h2>
<h3>SLOT TIME TABLE - SHAKTHI BALAN V</h3>
<table border="1">
<tr BGCOLOR="YELLOW">
<th>Day/Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
</tr>
<tr BGCOLOR="RED">
<td BGCOLOR="YELLOW">8-10</td>
<td>CE</td>
<td>C</td>
<td>FREE SLOT</td>
<td>CE</td>
<td>FWAD</td>
</tr>
<tr BGCOLOR="BLUE">
<td BGCOLOR="YELLOW">10-12</td>
<td>FREE SLOT</td>
<td>CE</td>
<td>FREE SLOT</td>
<td>CE</td>
<td>FWAD</td>
</tr>
</tr>
<tr BGCOLOR="PURPLE">
<td BGCOLOR="YELLOW">12-1</td>
<td COLSPAN=5 ALIGN="CENTER">LUNCH</td>
</tr>
<tr BGCOLOR="CYAN">
<td BGCOLOR="YELLOW">1-3</td>
<td>FREE SLOT</td>
<td>C</td>
<td>FREE SLOT</td>
<td>FWAD</td>
<td>CE</td>
</tr>
<tr BGCOLOR="RED">
<td BGCOLOR="YELLOW">3-5</td>
<td>FREE SLOT</td>
<td>C</td>
<td>CE</td>
<td>FWAD</td>
<td>C</td>
</tr>
</table>
<h3>Subjects</h3>
<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>19EN612</td>
<td>Communicative English(CE)</td>
</tr>
<tr>
<td>3.</td>
<td>19PH206</td>
<td>C(C)</td>
</tr>
</table>
</body>
</html>

The program for creating slot timetable using basic HTML tags is executed successfully.
|
|---|