<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<style>
body {
font-family: 'Georgia', serif;
background-color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.table-container {
border: 1px solid #d4af37;
padding: 30px;
background: #faf9f5;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
border-radius: 4px;
max-width: 500px;
width: 100%;
}
h2 {
text-align: center;
color: #1a1a1a;
font-size: 18px;
letter-spacing: 1px;
margin-bottom: 5px;
text-transform: uppercase;
}
p {
text-align: center;
color: #777;
font-size: 12px;
margin-bottom: 25px;
font-style: italic;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
th {
font-weight: 600;
font-size: 12px;
color: #1a1a1a;
border-bottom: 2px solid #d4af37;
padding: 12px 8px;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.5px;
}
td {
padding: 14px 8px;
font-size: 14px;
color: #333333;
border-bottom: 1px solid #eaeaea;
text-align: center;
}
tr:last-child td {
border-bottom: none;
}
.highlight {
font-weight: bold;
color: #d4af37;
}
</style>
</head>
<body>
<div class="table-container">
<h2>Davite & Delucchi</h2>
<p>Ring Size Guide / Таблица размеров</p>
<table>
<thead>
<tr>
<th>Внутренний диаметр (mm)</th>
<th>IT / EU Size</th>
<th>US Size</th>
</tr>
</thead>
<tbody>
<tr>
<td>15.28 mm</td>
<td class="highlight">9</td>
<td>5</td>
</tr>
<tr>
<td>15.92 mm</td>
<td class="highlight">11</td>
<td>5.5</td>
</tr>
<tr>
<td>16.56 mm</td>
<td class="highlight">13</td>
<td>6.5</td>
</tr>
<tr>
<td>17.20 mm</td>
<td class="highlight">15</td>
<td>7.25</td>
</tr>
<tr>
<td>17.83 mm</td>
<td class="highlight">17</td>
<td>8</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>