How can I create this table with HTML?

I tried it but not sure how to do it correctly.
My code:
<table border=1 cellpadding=0 cellspacing=0>
<tr>
<td> </td>
<td> </td>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan=2> </td>
<td> </td>
<td> </td>
</tr>
</table>
Use
rowspanandcolspanattributes.The table has 3 columns (cells) and 3 rows:
Make sure that every row (
<tr>) has always the same count of cells/columns (<td>).An
<td>withcolspan="2"counts as2.<tr>has 3 cells (1+1+1).<td>from the previous<tr>which hascolspan="2"androwspan="2"and the last<td>element, so 3 cells (2+1)