0% found this document useful (0 votes)
102 views5 pages

Aim: Create Your Class Time Table Using Table Tag, Experiment With Rowspan, Colspan, Cellspacing and Cellpadding Attribute

The document provides code for creating a class time table using HTML table tags. It uses various table attributes like rowspan, colspan, cellspacing and cellpadding. The time table displays the subjects taught on each day of the week from time 1 to 6.

Uploaded by

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

Aim: Create Your Class Time Table Using Table Tag, Experiment With Rowspan, Colspan, Cellspacing and Cellpadding Attribute

The document provides code for creating a class time table using HTML table tags. It uses various table attributes like rowspan, colspan, cellspacing and cellpadding. The time table displays the subjects taught on each day of the week from time 1 to 6.

Uploaded by

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

Web Development 200160116521

Practical-2
Aim: Create your class time table using table tag, experiment with
rowspan, colspan, cellspacing and cellpadding attribute.
<!DOCTYPE html>
<html>
<head>
<title>Time table
</title>
</head>
<body>
<table width="1000" height="300">
<tr><td><h2 align="center">Sem 5 IT-B3 Time table</h1></td>
</tr>
<tr>
<td>
<table border="1" width="1000" height="300" cellpadding="2"
cellspacing="3">
<tr>
<th>
Time
</th>
<th>
Monday
</th>
<th>
Tuesday
</th>
<th>
Wednesday
</th>
<th>

1
Web Development 200160116521

Thursday
</th>
<th>
Friday
</th>

</tr>
<tr align="CENTER">
<td>1</td>
<td>
IPDC(3150005)-RNV
</td>
<td>
CS(3150714)-JBB
</td>
<td>
ADA(3150703)-RJP
</td>
<td rowspan="2">
WD(3151606)-HRP
</td>
<td>
CN(3150710)-OPM
</td>
</tr>
<tr align="CENTER">
<td>2</td>
<td>
CN(3150710)-PSM
</td>
<td>

2
Web Development 200160116521

ADA(3150703)-RJP
</td>
<td>
WD(3151606)-VAR
</td>
<td>
ADA(3150703)-NNM
</td>

</tr>
<tr align="CENTER">
<td>3</td>
<td>
WD(3151606)-HRP
</td>
<td>
PE(3150709)-KKJ
</td>
<td>
CS(3150714)-ABG
</td>
<td>
WD(3151606)-HRP
</td>
<td>
IPDC(3150005)-ABP
</td>
</tr>

3
Web Development 200160116521

<tr align="CENTER">
<td>4</td>
<td>
PE(3150709)-ABG
</td>
<td>
PE(3150709)-AAP
</td>
<td>
ADA(3150703)-NNM
</td>
<td>
CN(3150710)-PSM
</td>
<td>
CN(3150710)-OPM
</td>

</tr><tr align="CENTER">
<td>5</td>
<td rowspan="2">
CS(3150714)-ABG
</td>
<td rowspan="2">
CN(3150710)-OPM
</td>
<td rowspan="2">
</td>
<td rowspan="2">
DE-IIA(3150001)-RNV

4
Web Development 200160116521

</td>
<td rowspan="2">
ADA(3150703)-NNM
</td>
</tr>
<tr align="CENTER">
<td>6</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Output:

You might also like