img-3d-for-sc / index.html
soiz1's picture
Update index.html
4ad30b2 verified
raw
history blame contribute delete
904 Bytes
<!DOCTYPE html>
<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>