In our games tab, we have a table that lists the individual games. In the upper cell is the title of the game and below a matching image. If you click on the title of the game, you will be redirected to the "tag" of the game. How you can also add clickable links in a HTML table is explained here.

I added this table down below, just without pictures. Every game title in the cells directs you to the corresponding page on our blog:

Cities Skylines RimWorld
Factory Town League of Legends
Shakes and Fidget Eco
Esport All Game Posts

This is what the code of the table looks like:

<table>
  <tr>
    <td><a href="https://en.number13.de/tag/cities-skylines/">Cities Skylines</a></td>
    <td><a href="https://en.number13.de/tag/rimworld/">RimWorld</a></td>
  </tr>
   
  <tr>
    <td><a href="https://en.number13.de/tag/factory-town/">Factory Town</a></td>
    <td><a href="https://en.number13.de/tag/league-of-legends/">League of Legends</a></td>
  </tr>
        
  <tr>
    <td><a href="https://en.number13.de/tag/shakes-fidget/">Shakes and Fidget</a></td>
    <td><a href="https://number13.de/tag/eco/">Eco</a></td> 
  </tr>
  
  <tr>
    <td><a href="https://number13.de/tag/esport/">Esport</a></td>
    <td><a href="https://en.number13.de/tag/games/">All Game Posts</a></td>
  </tr>
</table>

To add a clickable link, between <td></td> you have to add the following:

<a href="https://en.number13.de/tag/cities-skylines/">Cities Skylines</a>

Paste the link between the quotation marks. Instead of Cities: Skylines, you have to add the desired text in the cell.