How do you create a table in HTML?

Use <table>, <tr> for rows, <td> for data cells, and <th> for header cells.

Example:

<table>
  <tr>
    <th>Name</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>John</td>
    <td>25</td>
  </tr>
</table>