Just starting out in web development and coding, I have a query about separating two tables. How can I do this? The relevant code is a few lines down.
<table border="1" width="35%" cellspacing="10" cellpadding="5">
<tr>
<th colspan="2"><h3>Dream Cars</h3></th>
<td>Tesla</td>
<td>Audi</td>
<td>Lamborghini</td>
</tr>
<tr>
<th colspan="2"><h3>Future Plans</h3></th>
<td>Mobile App Development Job</td>
<td>New York City</td>
<td>Innovate technology</td>
</tr>
</table>
Thank you!