<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>JavaScript タイピングゲーム</title>
<script src="php.js" defer></script>
</head>
<body>
<h1>JavaScript タイピングゲーム</h1>
<button id="startButton">スタート</button>
<div id="game" style="display:none;">
<p id="question">問題がここに表示されます</p>
<form id="answerForm">
<input type="text" id="answerInput" autocomplete="off">
</form>
<p id="timer">残り時間: <span id="timeLeft">10</span>秒</p>
</div>
</body>
</html>