HTML

Last Updated on: June 19, 2024

<table>
<caption>Table Name</caption>
<tr>
    <th>Heading of 1st column</th>
    <th>Heading of 2nd column</th>
    <th>Heading of 3rd column</th>
</tr>
<tr>
    <td>Data (row1, col1)</td>
    <td> Data (row1, col2)</td>
    <td> Data (row1, col3)</td>
</tr>
<tr>
    <td>Data (row2, col1)</td>
    <td> Data (row2, col2)</td>
    <td> Data (row2, col3)</td>
</tr>
</table>