2017-08-26 14:12:30 +03:00

26 lines
580 B
HTML

<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<head>
<style>
html, body {
overflow: hidden;
}
body {
margin: 0;
position: absolute;
width: 100%;
height: 100%;
}
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<canvas></canvas>
<script src="./script.js"></script>
</body>
</html>