<!DOCTYPE html>
<html>

<head>
  <title>Willem games</title>
  <link rel="icon" type="image/x-icon" href="./favicon.ico">
  <link rel="stylesheet" href="css/game.css" />
  <link rel="stylesheet" href="css/main.css" />
</head>

<body>
  <header>
    <button title="Dark theme on/off" onclick="toggleTheme();">&#9728;</button>
    <a href="index.html">Willem Games</a>
  </header>

  <main>
    <h1>Willem games collection:</h1>

    <h2>Games launcher:</h2>
      <p><a href="games-launcher.html">Games launcher</a> </p>

    <h2>Individual game pages</h2>

    <ul>
      <li> <a href="game-pong-context2d.html">Ping pong (context2d)</a></li>
      <li> <a href="game-tetris-context2d.html">Tetris (context2d)</a></li>
      <li> <a href="test-collision.html">Collision test(context2d)</a> &#9874;WIP&#9874;</li>
    </ul>

  </main>

  <footer>
    <p class="float-right">Author: Ward Truyen</p>
  </footer>
  <script src="js/theme.js"></script>
</body>

</html>