[go: up one dir, main page]

0% found this document useful (0 votes)
4 views2 pages

6 Tables

Download as docx, pdf, or txt
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 2

Aim:

To design a web page with different tables.

Coding:
<html>
<head>
<title>Table</title>
</head>
<body>
<h1>
Web design with Table
</h1>
<table border="2" bgcolor="blue" cellpadding="15" cellspacing="10">
<thead>
<tr>
<th>College Name</th>
<th>no.</th>
<th>Name</th>
<th>Department</th>
<th>DOB</th>
<th>Mobile no.</th>

</tr>
</thead>
<tbody>
<tr>
<td rowspan="5">VCAS</td>
<td>1</td>
<td>Eshwari</td>
<td>BCA</td>
<td>05/11/2002</td>
<td>9786162802</td>
</tr>
<tr>
<td>2</td>
<td>priya</td>
<td>BCA</td>
<td>04/01/2002</td>
<td>9786568802</td>
</tr>
<tr>
<td>3</td>
<td>oviya</td>
<td>BCA</td>
<td>14/05/2003</td>
<td>9786548021</td>
</tr>
<tr>
<td>4</td>
<td>Abarna</td>
<td>BCA</td>
<td>10/11/2003</td>
<td>9777548021</td>
</tr>
<tr>
<td>5</td>
<td>selva</td>
<td>BCA</td>
<td>10/04/2001</td>
<td>9789078021</td>
</tr>
</tbody>

</table>
</body>
</html>

Output:

You might also like