HTML

Colspan and Rowspan

The colspan attribute allows a cell to span multiple columns.

The rowspan attribute allows a cell to span multiple rows.

<table border="1">

    <tr>
        <th colspan="2">Student Information</th>
    </tr>

    <tr>
        <td>Name</td>
        <td>Ram</td>
    </tr>

</table>
Interactive Sandbox
HTML/CSS/JS