2016-03-08 17:49:38 -06:00

23 lines
465 B
HTML

<!doctype html>
<html>
<head>
<title>Pong - MomentumEngine</title>
<script type="application/javascript" src="./dist/pong.js"></script>
<style>
#canvas:-webkit-full-screen {
width: 100% !important;
height: 100% !important;
}
#canvas:fullscreen {
width: 100% !important;
height: 100% !important;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
</body>
</html>