Yogurts-Quest/html/index.html

28 lines
464 B
HTML
Executable File

<html lang="en">
<head>
<title>LD 45</title>
<script src="lib/phaser.min.js"></script>
<script src="lib/jquery.min.js"></script>
<script src="game.js"></script>
<style>
html, body {
background-color: #333;
margin: 0;
height: 100vh;
display: block;
}
#game {
display: block;
width: 100%;
height: 100%;
}
#game.active {
cursor: none;
}
</style>
</head>
<body>
<div id="game"></div>
</body>
</html>