I have an issue with rowspan in the HTML table and I still didn't configure how to fix my issue
The following image shows what I want to have:
I used the following code but it doesn't give me what I want:
<table border="1">
<thead>
<tr>
<th>Title 1</th>
<th>Title 2</th>
<th>Title 3</th>
<th>Title 4</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="5">Title 1 example</td>
<td rowspan="3">Title 2 example</td>
<td rowspan="2">Title 2 example</td>
<td rowspan="2">Title 3 example</td>
<td rowspan="1">Title 3 example</td>
<td rowspan="1">Title 3 example</td>
<td rowspan="1">Title 3 example</td>
<td rowspan="1">Title 4 example</td>
<td rowspan="1">Title 4 example</td>
<td rowspan="1">Title 4 example</td>
<td rowspan="1">Title 4 example</td>
<td rowspan="1">Title 4 example</td>
</tr>
</tbody>
</table>
But it gives me the following table: I don't have any idea what I'm missing.