<table>
  <tr>
    <th>Heading 1/Column 1</th>
    <th>Heading 2/Column 2</th>
  </tr>
  <tr>
    <td>Row 1 Data Column 1</td>
    <td>Row 1 Data Column 2</td>
  </tr>
  <tr>
    <td>Row 2 Data Column 1</td>
    <td>Row 2 Data Column 2</td>
  </tr>
</table>

This will render a <table> consisting of three total rows (<tr>): one row of header cells (<th>) and two rows of content cells (<td>). <th> elements are tabular headers and <td> elements are tabular data. You can put whatever you want inside a <td> or <th>.

<th>Heading 1/Column 1</th>
<th>Heading 2/Column 2</th>
<td>Row 1 Data Column 1</td>
<td>Row 1 Data Column 2</td>
<td>Row 2 Data Column 1</td>
<td>Row 2 Data Column 2</td>

Untitled Database