mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
16 lines
386 B
HTML
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> |