Table headings are marked as th

The first row and the first column of this table are headings. These cells are marked as th elements.

The data cells are marked as td

Average monthly income in EUR
2021 2022 2023
Netherlands 2000 2020 2040
France 2010 2030 2050
Spain 2005 2025 2045
Germany 2050 2060 2070
Belgium 2100 2105 2110

HTML code

<table>
<caption>Average monthly income in EUR</caption>
  <tr>
    <th></th>
    <th>2021</th>
    <th>2022</th>
    <th>2023</th>
  </tr>
  <tr>
    <th>Netherlands</th>
    <td>2000</td>
    <td>2020</td>
    <td>2040</td>
  </tr>
  <tr>
    <th>France</th>
    <td>2010</td>
    <td>2030</td>
    <td>2050</td>
  </tr>
  <tr>
    <th>Spain</th>
    <td>2005</td>
    <td>2025</td>
    <td>2045</td>
  </tr>
  <tr>
    <th>Germany</th>
    <td>2050</td>
    <td>2060</td>
    <td>2070</td>
  </tr>
  <tr>
    <th>Belgium;</th>
    <td>2110</td>
    <td>2105</td>
    <td>2110</td>
  </tr>
</table>