Thanks to visit codestin.com
Credit goes to www.scribd.com

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

Table

The document is an HTML file that contains a table displaying personal information of two individuals, John Doe and Jane Erwin. The table includes columns for full name, email address, age, phone number, and contact address. The table is styled with a light green background and is centered on the page.
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)
10 views1 page

Table

The document is an HTML file that contains a table displaying personal information of two individuals, John Doe and Jane Erwin. The table includes columns for full name, email address, age, phone number, and contact address. The table is styled with a light green background and is centered on the page.
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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body>
<table width="700" align="Center" cellpadding="4" cellspacing="11" border="1"
bgcolor="lightgreen">
<thead>
<tr>
<th>Full name</th>
<th>Email Address</th>
<th>Age</th>
<th>Phone Number</th>
<th>Contact Address</th>
</tr>
</thead>
<tbody align="Center">
<tr>
<td>John Doe</td>
<td>[email protected]</td>
<td>21</td>
<td>08064554481</td>
<td>Owerri</td>
</tr>
<tr>
<td>Jane Erwin</td>
<td>[email protected]</td>
<td>19</td>
<td>08167840366</td>
<td>Lagos</td>
</tr>
</tbody>
</table>
</body>
</html

You might also like