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
130 changes: 129 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Ex03 Time Table
# Date:
# Date:17.12.24
# AIM
To write a html webpage page to display your slot timetable.

Expand All @@ -23,6 +23,134 @@ Add your timetable using `<td>` tag.
Execute the program using runserver command.

# PROGRAM
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>time table</title>
</head>
<body>
<center><img src="saveetha logo.jpg" height="120" width="600"></center>
<center><h3>SLOT TIMETABLE-LUKESH (24901128)</h3></center>
<style>

table{
border-collapse:collapse;
}
</style>
<center><table border="10"width="800"height="300">
<tr>
<th bgcolor="yellow">day/time</th>
<th bgcolor="yellow">Monday</th>
<th bgcolor="yellow">Tuesday</th>
<th bgcolor="yellow">Wednesday</th>
<th bgcolor="yellow">Thursday</th>
<th bgcolor="yellow">Fridayday</th>
<th bgcolor="yellow">Saturday</th>
</tr>
<tr>
<th bgcolor="yellow">8-10</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th bgcolor="cyan">Environmental science</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>


</tr>
<tr>
<th bgcolor="yellow">10-12</th>
<th bgcolor="cyan">Web development</th>
<th bgcolor="cyan">Physics</th>
<th bgcolor="cyan">C programming</th>
<th bgcolor="cyan">Communicative english</th>
<th bgcolor="cyan">C programming</th>
<th bgcolor="cyan">Probality and queueing models</th>
</tr>
<tr>
<th bgcolor="yellow">12-01</th>
<th colspan="6" bgcolor="green">Lunch</th>


</tr>
<tr>
<th bgcolor="yellow">01-03</th>
<th bgcolor="cyan">B.eee</th>
<th bgcolor="cyan">Communicative english</th>
<th bgcolor="cyan">Mentor meet</th>
<th bgcolor="cyan">Web development</th>
<th bgcolor="cyan">Probability and queueing models</th>
<th bgcolor="cyan">Physics</th>
</tr>
<tr>
<th bgcolor="yellow">03-05</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th bgcolor="cyan">B.eee</th>
<th align="center"bgcolor="cyan">FREE SLOT</th>
<th bgcolor="cyan">Career developmemt</th>
<th bgcolor="cyan">Web developmemt</th>
</tr>
</table></center>
<br>
<center><table border="3" width="600">
<tr>
<td>S.no</td>
<td>Subject code</td>
<td>Subject name</td>
</tr>
<tr>
<td>01</td>
<td>19AI304</td>
<td>C programming</td>
</tr>
<tr>
<td>02</td>
<td>19AI414</td>
<td>Web development</td>
</tr>
<tr>
<td>03</td>
<td>19EE305</td>
<td>B.eee</td>
</tr>
<tr>
<td>04</td>
<td>19EN101</td>
<td>Communicative english</td>
</tr>
<tr>
<td>05</td>
<td>19EY708</td>
<td>Career developmemt</td>
</tr>
<tr>
<td>06</td>
<td>19MA222</td>
<td>Probability and queueing models</td>
</tr>
<tr>
<td>07</td>
<td>SH3214</td>
<td>Physics</td>
</tr>
<tr>
<td>08</td>
<td>SH3214</td>
<td>Environmrntal science</td>
</tr>
</table></center>
</body>

</html>
```

# OUTPUT
#![time2](https://github.com/user-attachments/assets/ada64a43-b39a-4016-8c96-c5c31afe9ad7)


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