Odpowiedź :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabelka</title>
<style type="text/css">
.pole{
border-collapse: collapse;
border-spacing: 0;
border-color: none;
}
.pole td{
border-style:solid;
border-width:1px;
font-family:Arial, sans-serif;
font-size:14px;
overflow:hidden;
padding:10px 5px;
word-break:normal;
}
.pole th{
border-style:solid;
border-width:1px;
font-family:Arial, sans-serif;
font-size:14px;
font-weight:normal;
overflow:hidden;
padding:10px 5px;
word-break:normal;
}
.pole .siodma{
height: 20%;
width: 20%;
background-color:#ff0000;
text-align:left;
vertical-align:top
}
.pole .piata{
height: 20%;
width: 20%;
background-color:#f8a102;
text-align:left;
vertical-align:top
}
.pole .szosta{
height: 20%;
width: 20%;
background-color:#6665cd;
text-align:left;
vertical-align:top
}
.pole .pierwsza{
height: 20%;
width: 60%;
background-color:#082b94;
text-align:left;
vertical-align:top
}
.pole .druga{
height: 20%;
width: 40%;
background-color:#34ff34;
text-align:left;
vertical-align:top
}
.pole .trzecia{
height: 20%;
width: 20%;
background-color:#6200c9;
text-align:left;
vertical-align:top
}
.pole .czwarta{
height: 80%;
width: 60%;
background-color:#fcff2f;
text-align:left;
vertical-align:top
}
</style>
</head>
<body>
<table class="pole">
<thead>
<tr>
<th class="pierwsza" colspan="3"></th>
<th class="druga" colspan="2"></th>
</tr>
</thead>
<tbody>
<tr>
<td class="trzecia"></td>
<td class="czwarta" colspan="3" rowspan="3"></td>
<td class="piata"></td>
</tr>
<tr>
<td class="szosta" rowspan="2"></td>
<td class="siodma" rowspan="2"></td>
</tr>
<tr>
</tr>
</tbody>
</table>
</body>
</html>
Powinno być git, tylko musisz wstawić obrazek w środek lub powiększyć sobie tą tabelę. Raczej z resztą sobie poradzisz. Mam nadzieję, że kodzik jest czytelny :) Powodzenia <3