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.

38 lines
1.3 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="css/style.css" />
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <script type="text/javascript" src="js/diceHandling.js"></script>
  9. <script type= "text/javascript" src="js/makeBoard.js"></script>
  10. <script type= "text/javascript" src="js/Bridge.js"></script>
  11. <title>Document</title>
  12. </head>
  13. <header>
  14. <h1>Schlangen und Leitern</h1>
  15. </header>
  16. <body>
  17. <div class = playerSelect>
  18. <input type="button" class = "playerButton" id="2Player" onclick="mainGame(2)" value="2 Spieler"></input>
  19. <input type="button" class = "playerButton" id="3Player" onclick="mainGame(3)" value ="3 Spieler"></input>
  20. <input type="button" class = "playerButton" id="4Player" onclick="mainGame(4)" value = "4 Spieler"></input>
  21. </div>
  22. <div calss = container id="playArea" >
  23. <table id = "board"></table>
  24. <div class = container id="würfelBereich" style="display: none;" >
  25. <img src="/img/wurfle/f(1).png" id="face">
  26. <input type = "button" id="rollButton" onclick = "changeFace();" value = "Würfeln">
  27. </div>
  28. </div>
  29. </body>
  30. </html>