Use <table>, <tr> for rows, <td> for data cells, and <th> for header cells.
<table>
<tr>
<td>
<th>
Example:
<table> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>John</td> <td>25</td> </tr> </table>