<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Моя первая игра</title>
<style>
body {
margin: 0;
background-color: #222;
color: #fff;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
#score {
font-size: 24px;
margin-bottom: 10px;
}
canvas {
border: 2px solid #fff;
background-color: #111;
}
</style>
</head>
<body>
<div id="score">Очки: 0</div>
<!-- Игровое поле -->
<canvas id="gameCanvas" width="500" height="400"></canvas>
<!-- Подключаем логику -->
<script src="game.js"></script>
</body>
</html>