Table sections (thead / tbody / tfoot) are optional. The table heading (caption) and columns (col / colgroup) are also optional.
In HTML (but not XHTML), the closing tag for rows and cells is also optional, so you can write a table as:
<table> <tr> <th>1 <th>2 <tr> <td>3 <td>4 <tr> <td>5 <td>6 </table>
However, it is recommended that you close tags to get a better structure in your code. It also makes things easier if you decide to switch to XHTML.
Guffa source share