Tabela HTML
Utilizando o atributo rowspan
HTML
<table border="1">
<tr>
<th>Nome</th>
<th>País</th>
<th>E-mail</th>
<th>Pontuação</th>
</tr>
<tr>
<td rowspan="2">Francisco</td>
<td rowspan="2">Brasil</td>
<td>[email protected]</td>
<td rowspan="2">60</td>
</tr>
<tr>
<td>[email protected]</td>
</tr>
<tr>
<td>Monize</td>
<td>Brasil</td>
<td>[email protected]</td>
<td>80</td>
</tr>
</table>