Table Colspan

Example merging columns using colspan.

Preview

Code

<table border="1">
<tr>
<th colspan="2">Full Name</th>
</tr>
<tr>
<td>John</td>
<td>Smith</td>
</tr>
</table>

More HTML Tables Examples (11)