index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. <button id="start">Start</button>
  11. <div class="contents">
  12. <div id="inputs">
  13. <button id="saveInputs">Save</button>
  14. <h2>Card Values</h2>
  15. </div>
  16. <div class="bingo">
  17. <table>
  18. <tbody id="tbody"></tbody>
  19. </table>
  20. </div>
  21. </div>
  22. <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">
  23. <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-opacity="0.75" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
  24. </svg>
  25. <script></script>
  26. </body>
  27. </html>