0% found this document useful (0 votes)
12 views4 pages

ENROLLMENT NO:216370307050 Practical:5.1 Aim:Craete Responsive Web Page of Your Class Time Table by Using Bootstrap Grid System

The document is a code sample that creates an unresponsive time table for a computer class without using Bootstrap. It contains an HTML structure with heading, table, and rows/cells to display the class schedule for each day including subjects, teachers and room numbers. The aim is stated to create a responsive web page for the class time table using Bootstrap grid system.

Uploaded by

Mistry Soham
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views4 pages

ENROLLMENT NO:216370307050 Practical:5.1 Aim:Craete Responsive Web Page of Your Class Time Table by Using Bootstrap Grid System

The document is a code sample that creates an unresponsive time table for a computer class without using Bootstrap. It contains an HTML structure with heading, table, and rows/cells to display the class schedule for each day including subjects, teachers and room numbers. The aim is stated to create a responsive web page for the class time table using Bootstrap grid system.

Uploaded by

Mistry Soham
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

ENROLLMENT NO:216370307050

PRACTICAL:5.1

AIM:CRAETE RESPONSIVE WEB PAGE OF YOUR CLASS TIME TABLE BY USING BOOTSTRAP GRID
SYSTEM.

<html>

    <head>

        <title>Time Table Without Bootstrap</title>

    </head>

    <body>

        <center><h1>Computer-21 Time Table</h1></center>

        <center>

            <table border="2">

                <tr>

                    <th>Sr. No.</th>

                    <th>Monday</th>

                    <th>Tuesday</th>

                    <th>Wednesday</th>

                    <th>Thursday</th>

                    <th>Friday</th>

                </tr>

                <tr>

                    <td>1.</td>

                    <td>Python<br>MDV</td>

                    <td rowspan="2">DS<br>KHS<br>E-19</td>

                    <td>OS<br>MDV</td>

                    <td>Python<br>PRP</td>

                    <td rowspan="2">DS<br>KNM<br>E-28</td>

                </tr>

                <tr>

                    <td>2.</td>

                    <td>OS<br>MMC</td>
ENROLLMENT NO:216370307050

                    <td>DS<br>KNM</td>

                    <td>Python<br>PRP</td>

                </tr>

                <tr>

                    <td colspan="6"><center>RECESS</center></td>

                </tr>

                <tr>

                    <td>3.</td>

                    <td>RDBMS<br>RJP</td>

                    <td>DS<br>KHS</td>

                    <td>RDBMS<br>RJP</td>

                    <td>RDBMS<br>RJP</td>

                    <td>DS<br>KSH</td>

                </tr>

                <tr>

                    <td>4.</td>

                    <td rowspan="2">Python<br>MDV<br>E-28</td>

                    <td>Python<br>MDV</td>

                    <td rowspan="2">RWPD<br>MMC<br>E-28</td>

                    <td><center>--</center></td>

                    <td>Python<br>MDV</td>

                </tr>

                <tr>

                    <td>5.</td>

                    <td>OS<br>MDV</td>

                    <td><center>--</center></td>

                    <td>Library<br>MDV</td>

                </tr>

                <tr>

                    <td colspan="6"><center>RECESS</center></td>

                 </tr>
ENROLLMENT NO:216370307050

                <tr>

                <tr>

                    <td>6.</td>

                    <td rowspan="2">RDBMS<br>PRP<br>E-28</td>

                    <td><center>--</center></td>

                    <td rowspan="2">OS<br>MDV<br>E-19</td>

                    <td><center>--</center></td>

                    <td rowspan="2">RDBMS<br>RJP<br>E-28</td>

                </tr>

                <tr>

                    <td>7.</td>

                    <td><center>--</center></td>

                    <td><center>--</center></td>

                </tr>  

        </center>

        </table>

    </body>

</html>
ENROLLMENT NO:216370307050

You might also like