0% found this document useful (0 votes)
20 views8 pages

Web 2

Web html

Uploaded by

SAMI.E. S
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)
20 views8 pages

Web 2

Web html

Uploaded by

SAMI.E. S
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/ 8

Exp no :2

Date:

Table
Aim : Develop HTML program for table with different properties and altributes

Program :

<html>

<head>

<title>My Table</title>

</head>

<body>

<h4 align=”center”>with cellpading and cellspacing</h4>

<table align=”center” style=”width:65%” border=”3”

cellpadding=”15” cellspacing=”10”>

<tr>

<th>Roll No</th>

<th>Name</th>

<th>june</th>

<th>july</th>

<th>August</th>

<th>September</th>

</tr>

<tr>

<td>1</td>

<td>Sasuke</td>

<td>80</td>

<td>95</td>

<td>92</td>

<td>88</td>
</tr>

<tr>

<td>2</td>

<td>Naruto</td>

<td>75</td>

<td>78</td>

<td>80</td>

<td>92</td>

</tr>

<tr>

<td>3</td>

<td>Itachi</td>

<td>65</td>

<td>75</td>

<td>85</td>

<td>95</td>

</tr>

</table>

<hr>

<h4 align = “center”>No Border</h4>

<table align = “center” style=”width:65%” border=0 >

<tr>

<th>Education</th>

<th>school/college</th>

<th>year of pass</th>

<th>Mark</th>

</tr>

<tr>

<td>SSLC</td>
<td>ST Marys HSS pattom</td>

<td>2020</td>

<td>85%</td>

</tr>

<tr>

<td>HSS</td>

<td>MVHSS thundathil</td>

<td>2022</td>

<td>82%</td>

</tr>

<tr>

<td>College</td>

<td>GPTC Attingal</td>

<td>-</td>

<td>-</td>

</tr>

</table>

<hr>

<h4 align = “center”>With colspan</h4>

<table align = “center” style=”width:65%” border=3>

<tr>

<th colspan=”6”> time Table</th>

</tr>

<tr>

<th>Day</th>

<th>1</th>

<th>2</th>

<th>3</th>

<th>4</th>
<th>5</th>

</tr>

<tr>

<td>Monday</td>

<td>OOPs</td>

<td>Seminar</td>

<td>Network Lab</td>

<td>MinorPrj</td>

<td>Web</td>

</tr>

<tr>

<td>Tuesday</td>

<td>Web</td>

<td colspan=”2”>Seminar</td>

<td colspan=”3”>Network Lab</td>

</tr>

<tr>

<td>Monday</td>

<td>Seminar</td>

<td>Network Lab</td>

<td>MinorPrj</td>

<td colspan=”2”>Web</td>

</tr>

</table>

<hr>

<h4 align = “center”>colspan and rowspan</h4>

<table align = “center” style=”width:65%” border=3>

<tr>

<th colspan=”4”> Marks</th>


</tr>

<tr>

<th>Sl no</th>

<th>Name</th>

<th>Subject</th>

<th>Mark</th>

</tr>

<tr>

<td rowspan=”3”>1</td>

<td rowspan=”3”>Sasuke</td>

<td>Maths</td>

<td>90</td>

</tr>

<tr>

<td>hindi</td>

<td>95</td>

</tr>

<tr>

<td>English</td>

<td>95</td>

</tr>

<tr>

<td rowspan=”3”>2</td>

<td rowspan=”3”>Naruto</td>

<td>Maths</td>

<td>70</td>

</tr>

<tr>

<td>hindi</td>
<td>80</td>

</tr>

<tr>

<td>English</td>

<td>85</td>

</tr>

</table>

<hr>

</body>

</html>

Output :
Result :

You might also like