Oii,
Não consegui resolver o problema, não consigo formatar minha tabela, já copiei e colei o código do professor, já dei uma olhada no forum, mas não me ajudou. Alguem pode me ajudar a identificar o problema? Segue meu HTML e CSS:
<table>
<tread>
<tr>
<th>Dia</th>
<th>Horario</th>
</tr>
</tread>
<tbody>
<tr>
<td>Segunda</td>
<td>8h ~ 20h</td>
</tr>
<tr>
<td>Quarta</td>
<td>8h ~ 20h</td>
</tr>
<tr>
<td>Sexta</td>
<td>8h ~ 20h</td>
</tr>
</tbody>
</table>
table {
margin: 20px 0 40px;
}
thead {
background: gray;
color: white;
font-weight: bold;
}
td {
border: 1px solid #000000;
}