<head>
<meta charset="utf-8">
<title>Испытание: итоговая таблица</title>
</head>
<body>
<h1>Итоговая таблица</h1>
<table>
<tr style="background-color: darkcyan; ">
<th class="cell-1" style="width: 33%;">Город</th>
<th style="width: 33%; background-color: lightblue" class="cell-2">Посещений</th>
<th style="width: 33%;" class="cell-3">%</th>
<tr>
<tr>
<td class="cell-1">СПб</td>
<td class="cell-2">199</td>
<td class="cell-3">65.12</td>
</tr>
<tr style="background-color: lightyellow;">
<td class="cell-1">Москва</td>
<td class="cell-2">69</td>
<td class="cell-3">21.3</td>
</tr>
<tr>
<td class="cell-1">Киев</td>
<td class="cell-2">5</td>
<td class="cell-3">8</td>
</tr>
<tr style="background-color: lightyellow;">
<td colspan="2" class="cell-1">Посещений за весь период</td>
<td class="cell-3">273</td>
</tr>
</table>
</body>
body {
width: 350px;
margin: 0;
padding: 0 10px;
font-size: 14px;
font-family: Arial, sans-serif;
}
table {
border-collapse: collapse;
}
th {
padding: 10px;
border-top: 1px solid black;
border-bottom: 1px solid black;
color: white;
}
td {
border-bottom: 1px solid lightgray;
padding: 10px;
color: black;
}
.cell-1 {
text-align: left;
}
.cell-2 {
text-align: center;
}
.cell-3 {
text-align: right;
}