[Solved] How do you create a table in html


<table border="1">
  <tr>
    <td>Some text</td>
    <td>Some text</td>
  </tr>
  <tr>
    <td>Some text</td>
    <td>Some text</td>
  </tr>
</table>

<tr> stands for a row

<td> is a cell in the row

solved How do you create a table in html