0% found this document useful (0 votes)
17 views1 page

Table1. HTML

The document contains HTML code for a table with two rows of data containing names and ages, and includes styling for borders on the table, rows, and cells.

Uploaded by

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

Table1. HTML

The document contains HTML code for a table with two rows of data containing names and ages, and includes styling for borders on the table, rows, and cells.

Uploaded by

Shubham Jadhav
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html>
<head>
<style>
table, th, td (
border: 2px solid black ;
)
</style>
</head>
<body>

<h1>FY</h1>
<table>
<tr>
<td> colspan="3"> Firstname</td>

<th>Firstname</th>
<th>Lastname,</th>
<th>Age</th>
</tr>
<tr>
<td>Shubham</td>
<td>Jadhav</td>
<td>16</td>
</tr>
<tr>
<td>Yash</td>
<td>Jadhav</td>
<td>11</td>
<td Colspan ="1">Break</td>
</tr>
</table>

</body>
</html>

You might also like