Skip to content

Saranyaaav/slot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Ex03 Time Table

Date:18.11.2023

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

<<html>

<head>

<title>Slot Timetable</title>

</head>

<body>

<center>

<img src="C:\Users\admin\Downloads\logo.png" height="100" width="640">

</center>

<br>

<table align="center" width="540" cellspacing="2" cellpadding="4" border="5" bgcolor="cyan">

<caption><b>SLOT TIME TABLE - SARANYA V(23014052)</b></caption>

<tr align="center">

<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">Friday</th>

</tr>

<tr align="center">

<th bgcolor="yellow">8-10</th>

I

<td>FUNDAMENTALS OF C PROGRAMMING</td>

<td>COMMUCATIVE ENGLISH</td>

<td>PHYSICS FOR QUANTUM COMPUTATION</td>

<td>STATISTICS AND NUMERICAL METHODS</td>

<td>FUNDAMENTALS OF C PROGRAMMING</td>

</tr>

<tr align="center">

<th bgcolor="yellow">10-12</th>

<td>FREE SLOT</td>

<td> FUNDAMENTALS OF WEB APPLICATION DEVELOPMENT</td>

<td>PRINCIPLES OF CHEMISTRY IN ENGINEERING</td>

<td>FREE SLOT</td>

<td>STATISTICS AND NUMERICAL METHODS</td>

</tr>

<tr>

<th bgcolor="yellow">12-1</th>
<td colspan="5" align="center">L UNC H</td>

</tr>

<tr align="center">

<th bgcolor="yellow">1-3</th>

<td>FREE SLOT </td>

<td>FREE SLOT</td>

<td>COMMUCATIVE ENGLISH</td>

<td>FUNDAMENTALS OF WEB APPLICATION</td>

<td>SOFT SKILLS</td>

</tr>

<tr align="center">

<th bgcolor="yellow">3-5</th>

<td > STATISTICS AND NUMERICAL METHODS</td>

<td>FREE SLOT</td>

<td>FUNDAMENTALS OF WEB APPLICATION DEVELOPMENT</td>

<td>FPHYSICS FOR QUANTUM COMPUTATION</td>

<td>PRINCIPLES OF CHEMISTRY IN ENGINEERING</td>

</tr>

</table>

<br>

<table align="center" cellspacing="2" cellpadding-"4" border="2">

<tr align="center">

<th>S. No.</th>
<th>Subject Code</th>

<th>Subject Name</th>

</tr>

<tr>

<td align="center">1.</td>

<td align="center">19A1414</td>

<td>Fundamentals of web Application Development (FWAD)</td>

</tr>

<tr>

<td align="center">2.</td>

<td align="center">19A1304</td>

<td>FUNDAMENTALS OF C PROGRAMMING(C PROGRAM)</td>

</tr>

<tr>

<td align="center">3.</td>

<td align="center">19A1414</td>

<td>FUNDAMENTALS OF WEB APPLICATION DEVELOPMENT (FWAD)</td>

</tr>

<tr>

<td align="center">4.</td>

<td align="center">19CY205</td>

<td>Principles of Chemistry in Engineering (CHE)</td>

</tr>

<tr>

<td align="center">5.</td>

<td align="center">19MA211</td>

<td>STATISTICS AND NUMERICAL METHODS (MAT)</td>

</tr>
<td align="center">6.</td>

<td align="center">19EY/01</td>

<td>Soft Skills (55)</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

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 69.8%
  • HTML 30.2%