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.

33 lines
884 B

  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/rollDice.js"></script>
  9. <script type= "text/javascript" src="js/rollResult.js"></script>
  10. <script type= "text/javascript" src="js/makeBoard.js"></script>
  11. <title>Document</title>
  12. </head>
  13. <body>
  14. <div calss = container id="playArea">
  15. <table id = "board"></table>
  16. </div>
  17. <div class = container id="würfelBereich">
  18. <img src="/img/wurfle/f(1).png" id="face">
  19. <input type = "button" id="rollButton" onclick = "changeFace();drawBoard()" value = "Würfeln">
  20. </div>
  21. </body>
  22. </html>