Copy HTML
<div class="table-wrapper">
<table class="data-table">
<caption>Web project status</caption>
<colgroup>
<col>
<col>
<col>
<col class="highlighted-column">
</colgroup>
<thead>
<tr>
<th scope="col">Phase</th>
<th scope="col">Task</th>
<th scope="col">Owner</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" rowspan="2">Planning</th>
<td>Scope</td>
<td>Ana</td>
<td>Complete</td>
</tr>
<tr>
<td>Research</td>
<td>Luis</td>
<td>Complete</td>
</tr>
<tr>
<th scope="row" rowspan="2">Development</th>
<td>Semantic HTML</td>
<td>Mei</td>
<td>In progress</td>
</tr>
<tr>
<td>Accessibility</td>
<td>Sam</td>
<td>Pending</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="3" scope="row">Completed tasks</th>
<td>2 of 4</td>
</tr>
</tfoot>
</table>
</div>