Skip to content
 
 

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Ex03 Time Table

Date:21.09.2025

AIM

To write a html webpage page to display your slot timetable.

ALGORITHM

STEP 1

Create a Django-admin Interface.

STEP 2

Create a static folder and inert HTML code.

STEP 3

Create a simple table using

tag in html.

STEP 4

Add header row using

tag.

STEP 5

Add your timetable using

tag.

STEP 6

Execute the program using runserver command.

PROGRAM

<!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>

OUTPUT

alt text

RESULT

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

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages