Skip to content

Instantly share code, notes, and snippets.

@garyanikin
Created April 22, 2022 14:50
Show Gist options
  • Save garyanikin/75bd1402a7a7b087762de43dee814c2c to your computer and use it in GitHub Desktop.
Save garyanikin/75bd1402a7a7b087762de43dee814c2c to your computer and use it in GitHub Desktop.
Game module html
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Псевдокот</title>
</head>
<body>
<style>
body, html {
padding: 0;
margin: 0;
}
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<canvas></canvas>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment