Skip to content

sujithrabkn/timetable

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Experiment_Time_Table

AIM

To Write a html webpage page to display your timetable.

ALGORITHM

STEP 1

create a simple table using table tag

STEP 2

Add header row using th tag

STEP 3

Add your timetable

STEP 4

Execute the program

CODE

<!DOCTYPE html>
<html>
    <head>
        <title> first sem timetable </title>
    </head>
    <body>
        <img src='logo.png' width="1200" height="200">
       
        <table border="3" cellpadding="2">
            <tr>
                <th colspan="5" align="center">TIME TABLE</th>
            </tr>
            <tr>
                <td align="center" colspan="3"> Reference Num </td>
                <td align="center"> 22008172 </td>
            </tr>
            <tr>
                <th width="10%"> DAYS </th>
                <th align="center"> 1 </th>
                <th align="center"> 2 </th>
                <th align="center"> 3 </th>
                <th align="center"> 4 </th>
            </tr>
            <tr>
                <td width="20%" align="center" valign="bottom"> MONDAY </td>
                <td align="center" height="60"> Fundamentals of Web Application Development </td>
                <td align="center" height="60"> Communicative English </td>
                <td align="center" height="60"> Digital Electronics </td>
                <td align="center" height="60"> Statistics </td>
            </tr>
            <tr>
                <td width="20%" align="center" valign="bottom"> TUESDAY </td>
                <td align="center" height="60"> Digital Electronics </td>
                <td align="center" height="60"> Statistics </td>
                <td align="center" height="60"> Communicative English </td>
                <td align="center" height="60"> Fundamentals of Web Application Development </td>
            </tr>
		<tr>
                <td width="20%" align="center" valign="bottom"> WEDNESDAY </td>
                <td align="center" height="60"> Fundamentals of Web Application Development </td>
                <td align="center" height="60"> Communicative English </td>
                <td align="center" height="60"> Digital Electronics </td>
                <td align="center" height="60"> Statistics </td>
            </tr>
    		<tr>
                <td width="20%" align="center" valign="bottom"> THURSDAY </td>
                <td align="center" height="60"> Digital Electronics </td>
                <td align="center" height="60"> Statistics </td>
                <td align="center" height="60"> Communicative English </td>
                <td align="center" height="60"> Fundamentals of Web Application Development </td>
            </tr>
    		<tr>
                 <td width="20%" align="center" valign="bottom"> FRIDAY </td>
                <td align="center" height="60"> Fundamentals of Web Application Development </td>
                <td align="center"> Communicative English </td>
                <td align="center"> Digital Electronics </td>
                <td align="center"> Statistics </td>
            </tr>
		<tr>
                <td width="20%" align="center" valign="bottom"> SATURDAY </td>
                <td align="center" height="60"> Digital Electronics </td>
                <td align="center" height="60"> Statistics </td>
                <td align="center" height="60"> Communicative English </td>
                <td align="center" height="60"> Fundamentals of Web Application Development </td>
            </tr>
    
        </table>
    </body>
</html>

OUPUT

timetable

RESULT

Timetable created successfully

About

No description, website, or topics provided.

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 63.7%
  • HTML 36.3%