The Table Element : Example

<table>
  <caption>3x3 table</caption>
  <col id="col1"><col id="col2"><col id="col3">
  <tr>
    <th>Header 1</th>
    <td>Cell 1</td>
    <td>Cell 2</td>
  </tr>
  <tr>
    <th>Header 2</th>
    <td>Cell 3</td>
    <td>Cell 4</td>
  </tr>
  <tr>
    <td>cell 7</td >
    <td>Cell 5</td>
    <td>Cell 6</td>
  </tr>
</table>
	
3x3 table
Header 1 Cell 1 Cell 2
Header 2 Cell 3 Cell 4
cell 7 Cell 5 Cell 6

Cheat :

border="1"