34 lines
435 B
HTML
34 lines
435 B
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>Mid-Simulator</title>
|
||
|
<meta charset="utf-8">
|
||
|
<style>
|
||
|
* {
|
||
|
margin: 0;
|
||
|
cursor: url("sprites/cursor.png");
|
||
|
}
|
||
|
html,
|
||
|
body {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
overflow: hidden;
|
||
|
background-color: black;
|
||
|
}
|
||
|
canvas {
|
||
|
display: block;
|
||
|
margin: auto;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<script src="/dist/helper.js"></script>
|
||
|
<script src="/dist/game.js"></script>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|