<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Tabela de Tamanhos - Farda</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ffe600; /* Amarelo */
color: #051a53; /* Azul escuro */
padding: 20px;
}
.logo {
font-weight: bold;
font-size: 24px;
margin-bottom: 20px;
}
.titulo {
font-size: 36px;
font-weight: bold;
text-transform: uppercase;
line-height: 1.2;
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
max-width: 700px;
}
th, td {
border: 2px solid #051a53;
padding: 10px;
text-align: center;
}
th {
background-color: #051a53;
color: #ffe600;
text-transform: uppercase;
}
.setas {
font-size: 24px;
font-weight: bold;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="logo">???? FARDA</div>
<div class="titulo">Blusão<br>Casaco<br>Jaqueta</div>
<div class="setas">>>>>>>>>></div>
<table>
<tr>
<th>Tamanho BRA</th>
<th>P</th>
<th>M</th>
<th>G</th>
<th>GG</th>
</tr>
<tr>
<td>Comprimento (cm)</td>
<td>67-67</td>
<td>67-73</td>
<td>73-76</td>
<td>73-76</td>
</tr>
<tr>
<td>Largura (cm)</td>
<td>50-53</td>
<td>53-56</td>
<td>56-59</td>
<td>59-62</td>
</tr>
<tr>
<td>Altura (cm)</td>
<td>165-170</td>
<td>170-175</td>
<td>175-180</td>
<td>180-185</td>
</tr>
</table>
<div class="setas"><<<<<<<<<<</div>
</body>
</html>