Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Ex03 Time Table

Date:

12/11/24

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 <table> tag in html.

STEP 4

Add header row using <th> tag.

STEP 5

Add your timetable using <td> tag.

STEP 6

Execute the program using runserver command.

PROGRAM

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

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