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.
'''
<title>my timetable</title>SLOT TIME TABLE-YUVARAM S (24900232)
</TABLE>
</center><BR>
<center>
<table border="2" cellpadding="5" width="700">
<tr><th>s.no</th><th>Subject Code</th><th>Subject Name</th></tr>
<tr><td>01</td><td>19AI301</td><td>Python</td></tr>
<tr><td>02</td><td>19AI403</td><td>Introduction to Data Science</td></tr>
<tr><td>03</td><td>19AI414</td><td>Fundamentals of Web Application Development</td></tr>
<tr><td>04</td><td>SH3214</td><td>Physics For Quantum Computing</td></tr>
<tr><td>05</td><td>19EY708</td><td>Career Development Skills</td></tr>
</table>
</center>
</body>
The program for creating slot timetable using basic HTML tags is executed successfully.
| TIME | MON | THU | WEN | THR | FRI | SAT |
|---|---|---|---|---|---|---|
| 08-10 | ----------------------------------- | Python | ------------------------------------------------------- | |||
| 10-12 | Fundamentals of Web Application Development | Introduction to Data Science | Fundamentals of Web Application Development | Python | Physics For Quantum Computing | PYTHON |
| <12:00-1:00>LUNCH | ||||||
| 01-03 | Career Development Skill | Python | MENTOR MEETING | Physics For Quantum Computing | Introduction to Data Science | Fundamentals of Web Application Development |

