Skip to content

SJananisenthilkumar/slot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ex03 Time Table

Date:7.11.23

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>
	<title>SLOT TIMETABLE</title>
	<body>
	<center>
	<table border="5" bgcolor="pink" cell spacing="10" cellpadding="10">
	<caption>SLOT TIME TABLE-JANANI S (23013409)</caption>
	<img src = "/static/logo.png" height="100" width="540">
	<tr>
	<TR bgcolor="orange">
	<th>Day/Time</th>
	<th>Monday</th>
	<th>Tuesday</th>
	<th>Wednesday</th>
	<th>Thursday</th>
	<th>Friday</th>
	</TR>
	<tr>
	<th bgcolor="orange">8-10</th>
	<td>FREE SLOT</td>
	<td>PROB</td>
	<td>FWAD</td>
	<td>FREE SLOT</td>
	<td>PYTHON</td>
	</tr>
	<tr>
	<th bgcolor="orange">10-12</th>
	<td>FREE SLOT</td>
	<td>PYTHON</td>
	<td>PHYSICS</td>
	<td>FWAD</td>
	<td>PROB</td>
	</tr>
	<tr>
	<th bgcolor="orange">1-3</th>
	<td>FREE SLOT</td>
	<td>FREE SLOT</td>
	<td>FREE SLOT</td>
	<td>SOFT SKILLS</td>
	<td>FWAD</td>
	</tr>
	<tr>
	<th bgcolor="orange">3-5</th>
	</tr>">3-5</th>
	<td>FREE SLOT</td>
	<td>FREE SLOT</td>
	<td>PYTHON</td>
	<td> PYTHON</td>
	<td>PHYSICS</td>
	</tr>
	</table>
	<br>
	<table>
	<table border="5" cell spacing="10" cellspading="15">
	<tr>
	<th>S.NO</th>
	<th>SUBJECT CODE</th>
	<th>SUBJECT NAME</th>
	</tr>
	<tr>
	<th>1</th>
	<td>19A1414</td>
	<td>FUNDAMENTALS OF WEB APPLICATION DEVELOPMENT(FWAD)</td>
	</tr>
	<tr>
	<th>2</th>
	<td>19MA222</td>
	<td>PROBABILITY AND QUEUEING THEORY(PQ)</td>
	</tr>
	<tr>
	<th>3</th>
	<td>19AI301C</td>
	<td>PYTHON AND LINEAR ALGEBRA(PYTHON)</td>
	</tr>
	<tr>
	<th>4</th>
	<td>19PH214</td>
	<td>PHYSICS AND QUANTUM COMPUTING(PQC)</td>
	</tr>
	<tr>
	<th>5</th>
	<td>19EY701</td>
	<td>SOFT SKILLS(SS)</td>
	</tr>
	</table>
	</body>
	</center>
	</head>
</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

 
 
 

Contributors

Languages

  • Python 79.0%
  • HTML 21.0%