23 lines
465 B
HTML
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> |