Copiar HTML
<div class="table-wrapper">
<table class="data-table">
<caption>Estado del proyecto web</caption>
<colgroup>
<col>
<col>
<col>
<col class="highlighted-column">
</colgroup>
<thead>
<tr>
<th scope="col">Fase</th>
<th scope="col">Tarea</th>
<th scope="col">Responsable</th>
<th scope="col">Estado</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" rowspan="2">Planificación</th>
<td>Alcance</td>
<td>Ana</td>
<td>Completado</td>
</tr>
<tr>
<td>Investigación</td>
<td>Luis</td>
<td>Completado</td>
</tr>
<tr>
<th scope="row" rowspan="2">Desarrollo</th>
<td>HTML semántico</td>
<td>Mei</td>
<td>En curso</td>
</tr>
<tr>
<td>Accesibilidad</td>
<td>Sam</td>
<td>Pendiente</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="3" scope="row">Tareas completadas</th>
<td>2 de 4</td>
</tr>
</tfoot>
</table>
</div>