ChatDev/WareHouse/CatchGoldHTMLGame_THUNLP_202310181636/index.html
2023-10-18 16:43:03 +08:00

16 lines
386 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Coin Catcher Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<canvas id="gameCanvas"></canvas>
<div id="gameOverScreen">
<h1>Game Over</h1>
<p id="finalScore"></p>
<button id="restartButton">Restart</button>
</div>
<script src="script.js"></script>
</body>
</html>