<!
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