Sure, here's an example of a simple game implemented using HTML and JavaScript, enclosed in `` tags:
<br><br>
<br>
<style>
#loadedGame { text-align: center; }
img { width: 80px; height: 80px; }
</style>
<h1>Простая игра</h1>
<p>Нажмите на картинку, чтобы получить очки:</p>
<img id="image" src="emozi_all/pictogram.png" alt="Картинка">
<p id="score">Очки: 0</p>
In this game, the player simply needs to click on the image to earn points. The score is displayed below the image, and it updates every time the image is clicked. You can replace the `emozi_all/game.png` with any image of your choice. Feel free to modify the code to fit your specific game requirements.