<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>縮小ボタンゲーム</title> <link rel="stylesheet" href="botan.css"> </head> <body> <div id="gameContainer"> <div id="scoreBoard">スコア: <span id="score">0</span></div> <div id="timer">残り時間: <span id="timeLeft">30</span>秒</div> <div id="gameArea"> <button id="shrinkButton">x</button> </div> <button id="startButton">ゲーム開始</button> </div> <script src="game.js"></script> </body> </html>