0 / 60 seg.

What is the correct HTML code to create a table with two columns and the first cell spanning both columns?

<table>
  <tr>
    <td colspan="2"></td>
  </tr>
  <tr>
    <td></td>
    <td></td>
  </tr>
</table>