opencoil-paracity/graphics/falling-scooters/index.html

49 lines
933 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html, body, div
{
padding:0;
margin: 0;
}
body
{
width:100%;
height:100%;
margin: 0;
overflow: hidden;
background-color: white;
}
canvas
{
background-color: white;
width:100%;
}
#game
{
width: 100;
height: 100;
margin: 0 auto;
}
#inviteDiv {
color: aquamarine;
font-size: 30px;
position: absolute;
pointer-events: none;
}
</style>
</head>
<body>
<script src="phaser.min.js?v=3100" charset="utf-8"></script>
<script src="index.js" charset="utf-8"></script>
<div id="inviteDiv"><h1>YOU'RE INVITED!<h1></div>
<div id="game"></div>
</body>
</html>