removed scrolling

This commit is contained in:
Mees Roelofsz
2024-01-16 11:08:14 +01:00
parent 9eb06d9f6f
commit 53d3259502

View File

@@ -1,8 +1,14 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
overflow: hidden;
}
</style>
<title>Open Dag Game</title> <title>Open Dag Game</title>
<!-- support p5--> <!-- support p5-->
@@ -13,7 +19,9 @@
<script src="js/Menu.js"></script> <script src="js/Menu.js"></script>
<script src="game.js"></script> <script src="game.js"></script>
</head> </head>
<body> <body>
</body> </body>
</html> </html>