starting to work on the endless runner

This commit is contained in:
sageTheDM 2025-02-21 11:57:34 +01:00
parent 934fffac63
commit 5d11f87dd3
3 changed files with 120 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<title>Endless runner</title>
<link
rel="apple-touch-icon"
sizes="180x180"
@ -23,5 +23,11 @@
/>
<link rel="manifest" href="../../favicon_io/site.webmanifest" />
</head>
<body></body>
<body>
<div class="game-container">
<canvas id="gameCanvas"></canvas>
<button id="restartBtn" onclick="restartGame()">Restart</button>
</div>
<script src="script.js"></script>
</body>
</html>