Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,132 @@ Add your timetable using `<td>` tag.
Execute the program using runserver command.

# PROGRAM
<!DOCTYPE html>
<html>
<head>
<title>SLOT TIME TABLE - Tharun R(24901164)</title>
<style>
table {
border-collapse: collapse;
width: 80%;
margin: 5px auto;
}

table + table {
margin-top: 20px;
}

th, td {
border: 5px solid Black;
text-align: center;
padding: 8px;
}

img {
width: 100%;
height: 15%;
}

.center-text {
text-align: center;
}

strong {
font-weight: bold;
font-size: 30px;
}
</style>
</head>
<body>
<img src="logo.png">
<div class="center-text">
<p><strong>SLOT TIME TABLE - Tharun R (24901164) </strong></p>
</div>
<table>
<tr>
<th colspan="1" bgcolor="Yellow">Day/Time</th>
<th colspan="1" bgcolor="Yellow">Monday</th>
<th colspan="1" bgcolor="Yellow">Tuesday</th>
<th colspan="1" bgcolor="Yellow">Wednesday</th>
<th colspan="1" bgcolor="Yellow">Thursday</th>
<th colspan="1" bgcolor="Yellow">Friday</th>
</tr>
<tr>
<th colspan="1" bgcolor="Yellow">8-10</th>
<th colspan="3" bgcolor="Cyan">FREE SLOT</th>
<th colspan="1" bgcolor="Cyan">PHY</th>
<th colspan="1" bgcolor="Cyan">CHE</th>
</tr>
<tr>
<th colspan="1" bgcolor="Yellow">10-12</th>
<th colspan="1" bgcolor="Cyan">GER</th>
<th colspan="1" bgcolor="Cyan">FREE SLOT</th>
<th colspan="1" bgcolor="Cyan">FWAD</th>
<th colspan="1" bgcolor="Cyan">FWAD</th>
<th colspan="1" bgcolor="Cyan">PHY</th>
</tr>
<tr>
<th colspan="1" bgcolor="Yellow">12-1</th>
<th colspan="5" bgcolor="Cyan">LUNCH</th>
</tr>
<tr>
<th colspan="1" bgcolor="Yellow">1-3</th>
<th colspan="2" bgcolor="Cyan">FREE SLOT</th>
<th colspan="1" bgcolor="Cyan">MAT</th>
<th colspan="1" bgcolor="Cyan">MAT</th>
<th colspan="1" bgcolor="Cyan">SS</th>
</tr>
</tr>
<tr>
<th colspan="1" bgcolor="Yellow">3-5</th>
<th colspan="2" bgcolor="Cyan">FREE SLOT</th>
<th colspan="1" bgcolor="Cyan">GER</th>
<th colspan="1" bgcolor="Cyan">CHE</th>
<th colspan="1" bgcolor="Cyan">FWAD</th>
</tr>
</table>

<table>
<tr>
<th colspan="1" bgcolor="White">S. No.</th>
<th colspan="1" bgcolor="White">Subject Code</th>
<th colspan="2" bgcolor="White">Subject Name</th>
</tr>
<tr>
<th colspan="1" bgcolor="White">1.</th>
<th colspan="1" bgcolor="White">19AI41</th>
<th colspan="2" bgcolor="White">Fundamentals of Web Application Development(FWAD)</th>
</tr>
<tr>
<th colspan="1" bgcolor="White">2.</th>
<th colspan="1" bgcolor="White">19EN612</th>
<th colspan="2" bgcolor="White">German Basic (GER)</th>
</tr>
<tr>
<th colspan="1" bgcolor="White">3.</th>
<th colspan="1" bgcolor="White">19PH206</th>
<th colspan="2" bgcolor="White">Physics for Information Technology (PHY)</th>
</tr>
<tr>
<th colspan="1" bgcolor="White">4.</th>
<th colspan="1" bgcolor="White">19CY205</th>
<th colspan="2" bgcolor="White">Principles of Chemistry in Engineering (CHE)</th>
</tr>
<tr>
<th colspan="1" bgcolor="White">5.</th>
<th colspan="1" bgcolor="White">19MA201</th>
<th colspan="2" bgcolor="White">Calculus and Matrix Algebra (MAT)</th>
</tr>
<tr>
<th colspan="1" bgcolor="White">6.</th>
<th colspan="1" bgcolor="White">19EY701</th>
<th colspan="2" bgcolor="White">Soft Skills (SS)</th>
</tr>
</table>
</body>
</html>
# OUTPUT
![WhatsApp Image 2025-05-29 at 19 07 39_bff5630f](https://github.com/user-attachments/assets/c8748ca4-7d08-49ce-889d-79c61d54ff12)

# RESULT
The program for creating slot timetable using basic HTML tags is executed successfully.