Spaces:
Running
Running
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>ηͺε·ε ₯ε</title> | |
| <style> | |
| body { | |
| font-family: sans-serif; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100vh; | |
| margin: 0; | |
| } | |
| input, button { | |
| font-size: 1.2em; | |
| margin-top: 10px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <label for="numberInput">ζγγγγηͺε·γε ₯εγγ¦γγ γγγ<br>η΅Άε―Ύγ«θͺεγ§ε ₯εγγͺγγ§γγ γγγ</label> | |
| <input type="text" id="numberInput" /> | |
| <button id="continueBtn">ηΆθ‘</button> | |
| <script> | |
| document.getElementById("continueBtn").addEventListener("click", function() { | |
| const number = document.getElementById("numberInput").value; | |
| localStorage.setItem("no", number); | |
| window.location.href = "2.html"; | |
| }); | |
| </script> | |
| </body> | |
| </html> | |