I need to split the TD of the Stages and Circuits columns into two parts. The idea is for TH to display the word "Steps" and the values entered in this column will be divided into < 30 > 30.
Etapas
<30 >30
1 2
5 6
How do I make this subdivision semantically? I'm using the bootstrap to do the layout.
<div>
<table>
<thead>
<tr>
<th>
Fase
</th>
<th>
Descricão
</th>
<th>
Etapas
</th>
<th>
Circuitos
</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
</div>