Table Rowspan

Example merging rows using rowspan.

Preview

Code

<table border="1">
<tr>
<th>Name</th>
<th>Subject</th>
</tr>
<tr>
<td rowspan="2">John</td>
<td>Math</td>
</tr>
<tr>
<td>Science</td>
</tr>
</table>

More HTML Tables Examples (11)