index.html 807 B

123456789101112131415161718192021222324
  1. <html>
  2. <head>
  3. <link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
  4. <title>Monopoly game launcher</title>
  5. <link rel="stylesheet" type="text/css" href="index.css">
  6. </head>
  7. <body>
  8. <h1>Monopoly Game Launcher</h1>
  9. <div class="container">
  10. <div class="dialog">
  11. <p>Click the button below to create a new Monopoly game. Games will automatically be deleted after <span id="game-ttl"></span> hour(s) of
  12. inactivity. <br /><br />Don't forget to save your games !</p>
  13. <div id="new-game-container">
  14. <button id="new-game">Create new game</button>
  15. <div id="new-game-url"></div>
  16. </div>
  17. <div id="stats"></div>
  18. </div>
  19. </div>
  20. <script type="text/javascript" src="index.js"></script>
  21. </body>
  22. </html>