index.html 994 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Donut Bingo</title>
  6. <style></style>
  7. </head>
  8. <body>
  9. <h1>Donut Bingo</h1>
  10. <div class="contents">
  11. <div id="inputs">
  12. <button id="saveInputs">Save</button>
  13. </div>
  14. <button id="start">Start</button>
  15. <div class="bingo">
  16. <table>
  17. <tbody id="tbody"></tbody>
  18. </table>
  19. </div>
  20. </div>
  21. <svg class="cross" id="cross" style="display:none" width="24px" height="24px" stroke-width="1.5" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" color="#000000">
  22. <path d="M6.75827 17.2426L12.0009 12M17.2435 6.75736L12.0009 12M12.0009 12L6.75827 6.75736M12.0009 12L17.2435 17.2426" stroke="#ff0000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  23. </svg>
  24. <script></script>
  25. </body>
  26. </html>