12/11/24
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.
<img src="logo.png" width="1150">
<html>
<body>
<table border="1" cellspacing="15" cellpadding="2">
<caption>My Schedule-Haridharshini.J(24900163)</caption>
<tr bgcolor="pink">
<th>DAY/TIME</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
<tr>
<td>8-10</td>
<td>Free hour</td>
<td>EVS</td>
<td>Free hour</td>
<td>PQC</td>
<td>FWAD</td>
<td>CE</td>
</tr>
<tr>
<td>10-12</td>
<td>FOCP</td>
<td>CMA</td>
<td>CE</td>
<td>Free hour</td>
<td>FOCP</td>
<td>CDS</td>
</tr>
<tr>
<td>12-1</td>
<td colspan="6" align="center">LUNCH</td>
</tr>
<tr>
<td>1-3</td>
<td>FWAD</td>
<td>FWAD</td>
<td>Mentor class</td>
<td>PP</td>
<td>PQC</td>
<td>CMA</td>
</tr>
<tr>
<td>3-5</td>
<td>Free hour</td>
<td>PP</td>
<td>Free hour</td>
<td>Free hour</td>
<td>Free hour</td>
<td>Free hour</td>
</tr>
</table>
<table border="2">
<tr>
<th>S.No</th>
<th>Subject Code</th>
<th>Subject Name</th>
</tr>
<tr>
<td>1.</td>
<td>19AI304</td>
<td>Fundamentals of C Programming</td>
</tr>
<tr>
<td>2.</td>
<td>19AI414</td>
<td>Fundamentals of Web Application Development</td>
</tr>
<tr>
<td>3.</td>
<td>SH4801</td>
<td>Environmental Sciences and Sustainability</td>
</tr>
<tr>
<td>4.</td>
<td>19MA201</td>
<td>Calculus and Matrix Algebra</td>
</tr>
<tr>
<td>5.</td>
<td>19AI301</td>
<td>Python Programming</td>
</tr>
<tr>
<td>6.</td>
<td>19EN101</td>
<td>Communicative English</td>
</tr>
<tr>
<td>7.</td>
<td>SH3214</td>
<td>Physics for Quantum Computing</td>
</tr>
<tr>
<td>8.</td>
<td>19EY708</td>
<td>Career Development Skills</td>
</tr>
</table>
</body>
</html>
The program for creating slot timetable using basic HTML tags is executed successfully.
