0
The HTML code to create this table would be as follows:
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<table class="table table-responsive">
<thead>
<tr>
<td width="100" rowspan="2">Resumo</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
</tr>
</thead>
<tbody>
<tr>
<td><b>Direto</b></td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td><b>1 Parada</b></td>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</tbody>
</table>
I hope I’ve helped.
Start by creating the HTML structure with the elements
table
,tr
andtd
. Then try stylized with CSS. If it doesn’t work out, you can [Dit] the question and add all these codes you did, explaining how it turned out and how you would like it to stay.– Woss
http://www.leandroguarino.com.br/index.php?p=curso_html5_css&aula=tabelas
– Gilmar Santos