Creating a Table

To create a table, you will have to enter the HTML into the Source. Below is the code for a 3 row, 3 column table.

<table>

  <thead>

      <tr>

          <td>Column 1 Title</th>

          <td>Column 2 Title</th>

          <td>Column 3 Title</th>

      </tr>

  </thead>

  <tbody>

      <tr>

          <td>Row 1 Column 1</td>

          <td>Row 1 Column 2</td>

          <td>Row 1 Column 3</td>

      </tr>

      <tr>

          <td>Row 2 Column 1</td>

          <td>Row 2 Column 2</td>

          <td>Row 2 Column 3</td>

      </tr>

  </tbody>

</table>