back
<head>
<style>
table, th, td{border: 1px solid black;
}
<!-- This is styling to give the table and cells a border -->
</style>
</head>
<!-- First table -->
<body>
<table id="table42">
<tr>
<td>Cell One</td>
<td>Cell Two</td>
</tr>
<tr>
<td>Cell Three</td>
<td>Cell Four</td>
</tr>
<tr>
<td>Cell Five</td>
<td>Cell Six</td>
</tr>
</table>
<!-- Second table -->
<table id="table43">
<tr>
<td>Cell One</td>
<td>Cell Two</td>
</tr>
<tr>
<td>Cell Three</td>
<td>Cell Four</td>
</tr>
<tr>
<td>Cell Five</td>
<td>Cell Six</td>
</tr>
</table>
</body>