Tables

Demo Table
Column 1 Column 2 Column 3 Column 4
Row 1 Value 1 Row 1 Value 2 Row 1 Value 3 Row 1 Value 4
Row 2 Value 1 Row 2 Value 2 Row 2 Value 3 Row 2 Value 4
Row 3 Value 1 Row 3 Value 2 Row 3 Value 3 Row 3 Value 4
Row 4 Value 1 Row 4 Value 2 Row 4 Value 3 Row 4 Value 4
Row 5 Value 1 Row 5 Value 2 Row 5 Value 3 Row 5 Value 4
Total 1 Total 2 Total 3 Total 4
View code
<table>
  <caption>
    Demo Table
  </caption>
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
      <th>Column 3</th>
      <th>Column 4</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Row 1 Value 1</td>
      <td>Row 1 Value 2</td>
      <td>Row 1 Value 3</td>
      <td>Row 1 Value 4</td>
    </tr>
    <tr>
      <td>Row 2 Value 1</td>
      <td>Row 2 Value 2</td>
      <td>Row 2 Value 3</td>
      <td>Row 2 Value 4</td>
    </tr>
    <tr>
      <td>Row 3 Value 1</td>
      <td>Row 3 Value 2</td>
      <td>Row 3 Value 3</td>
      <td>Row 3 Value 4</td>
    </tr>
    <tr>
      <td>Row 4 Value 1</td>
      <td>Row 4 Value 2</td>
      <td>Row 4 Value 3</td>
      <td>Row 4 Value 4</td>
    </tr>
    <tr>
      <td>Row 5 Value 1</td>
      <td>Row 5 Value 2</td>
      <td>Row 5 Value 3</td>
      <td>Row 5 Value 4</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <th>Total 1</th>
      <th>Total 2</th>
      <th>Total 3</th>
      <th>Total 4</th>
    </tr>
  </tfoot>
</table>