<!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="styles.css">
</head>
<body>
<div id="gameContainer">
<h1>縮小ボタンゲーム</h1>
<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="game2.js"></script>
</body>
</html>