| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Donut Bingo</title>
- <style></style>
- </head>
- <body>
- <h1>Donut Bingo</h1>
- <button id="start">Start</button>
- <div class="contents">
- <div id="inputs">
- <button id="saveInputs">Save</button>
- <h2>Card Values</h2>
- </div>
- <div class="bingo">
- <table>
- <tbody id="tbody"></tbody>
- </table>
- </div>
- </div>
- <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">
- <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>
- </svg>
- <script></script>
- </body>
- </html>
|