<html>
<head>
<title>Tabele</title>
<style>
table {
border-collapse: collapse;
}
td,
th {
border: 1px solid black;
padding: 10px;
}
th {
background: lightgrey;
}
</style>
</head>
<body>
<table>
<tr>
<th>-</th>
<th>Polska</th>
<th>Meksyk</th>
<th>Tajlandia</th>
</tr>
<tr>
<th>Kontynent</th>
<td>Europa</td>
<td>Ameryka Płn.</td>
<td>Azja</td>
</tr>
<tr>
<th>Liczebność</th>
<td>99999</td>
<td>99999</td>
<td>99999</td>
</tr>
<tr>
<th>Waluta</th>
<td>PLN</td>
<td>MXN</td>
<td>THB</td>
</tr>
</table>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.