36 lines
493 B
HTML
36 lines
493 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<canvas id='canvas'></canvas>
|
|
</div>
|
|
</body>
|
|
<script
|
|
type='text/javascript'
|
|
defer
|
|
src='_build/default/boot_js.bc.js'>
|
|
</script>
|
|
</html>
|