You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
520 B

2 years ago
2 years ago
  1. <!DOCTYPE html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Uno</title>
  6. <script defer src="../plugins.js"></script>
  7. <script defer type="module" src="./web/uno.js"></script>
  8. <link rel="stylesheet" href="./css/uno.css">
  9. </head>
  10. <body style="overflow: hidden">
  11. <div id="debug">
  12. <p id="playerInGame"></p>
  13. <p id="player"></p>
  14. <p id="cardOnDeck"></p>
  15. <div id="playerCards"></div>
  16. <button id="drawCard">Karte Ziehen</button>
  17. </div>
  18. </body>
  19. </html>