repository to manage all files for 1_2_oder_3 interaction game for Inf2/2 Interaktionen SoSe23 from Engert, Caliskan and Bachiri
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.

index.html 949B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" href="index.css">
  6. <script src="index.js"></script>
  7. <title>Title</title>
  8. </head>
  9. <body>
  10. <div id="MainHeading">
  11. <img src="12oder3-logo.png" alt="1_2_oder_3" id="MainHeadingPic">
  12. <div id="buttondiv">
  13. <button id="startbutton" onclick="startGame()">Start</button>
  14. <button id="nextbutton" onclick="nextQuestion()">Nächste Frage</button>
  15. </div>
  16. </div>
  17. <div id="questiondiv">
  18. <h1 id="question">Question</h1>
  19. </div>
  20. <br>
  21. <div id="answerdiv">
  22. <div class="answerbox" id="firstanswerbox">
  23. </div>
  24. <br>
  25. <div class="answerbox" id="secondanswerbox"></div>
  26. <br>
  27. <div class="answerbox" id="thirdanswerbox"></div>
  28. </div>
  29. <br>
  30. <div id="timerdiv">
  31. <img src="icons8-time.gif" alt="Timer:" id="timerpic">
  32. <p id="timer">Time</p>
  33. </div>
  34. <div id ="points">Punktestand der Teams</div>
  35. </body>
  36. </html>