kgames

KGames — free keyboard games for kids
git clone https://www.keyboard.games/code/kgames.git
Log | Files | Refs | README | LICENSE

index.html (1040B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4   <meta charset="UTF-8">
      5   <meta name="viewport" content="width=device-width, initial-scale=1.0">
      6   <title>KGames</title>
      7   <link rel="preconnect" href="https://fonts.googleapis.com">
      8   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
      9   <link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Baloo+2:wght@400;600&display=swap" rel="stylesheet">
     10   <link rel="stylesheet" href="css/style.css">
     11 </head>
     12 <body>
     13   <header>
     14     <h1>
     15       <span style="color:#E63946">K</span><span style="color:#1D7CF2">G</span><span style="color:#FFD23F">a</span><span style="color:#2EC4B6">m</span><span style="color:#E63946">e</span><span style="color:#1D7CF2">s</span>
     16     </h1>
     17     <p class="tagline">Free keyboard games for kids &mdash; no ads, no signup.</p>
     18   </header>
     19 
     20   <main>
     21     <div id="game-grid"></div>
     22   </main>
     23 
     24   <footer>
     25     <p><a href="https://www.keyboard.games/code/">Open source</a></p>
     26   </footer>
     27 
     28   <script src="js/main.js"></script>
     29 </body>
     30 </html>