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

Collage e

The document describes an HTML table with columns for first name, last name, and age of three people.

Uploaded by

Disha Gupta
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)
15 views1 page

Collage e

The document describes an HTML table with columns for first name, last name, and age of three people.

Uploaded by

Disha Gupta
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
You are on page 1/ 1

Collage

<!DOCTYPE HTML>
<html>
<head>
<style>
table, th, td{
border: 1px solid black;
border-collapse:collapse;}
</style>
</head>
<body>
<h2>HTML Table Lines</h2>
<table style="width:50%">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
</tr>

<tr>
<td>Shalki</td>
<td>Kumar</td>
<td>18</td>
</tr>

<tr>
<td>Shakya</td>
<td>Sinha</td>
<td>20</td>
</tr>

<tr>
<td>Disha</td>
<td>Gupta</td>
<td>19</td>
</tr>
</table>

</body>
</html>

You might also like