What is incorrect about this table code?
<table> <tr><td>Data</td><td>Data</td> </table>
Data should be inside a <p> tag
Data
<p>
<td> should be <th>
<td>
<th>
Missing closing </tr> tag
</tr>
<tr> should be inside <tbody>
<tr>
<tbody>