invaders/www/index.html

26 lines
692 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Invaders</title>
<style>
html, body {
background-color: #111;
color: #bbb;
font-family: monospace;
margin: 0;
overflow: hidden;
text-align: center;
}
canvas {
margin: calc(50vh - 300px) auto;
}
</style>
</head>
<body>
<noscript>This page contains WebAssembly and JavaScript content, please enable JavaScript in your browser.</noscript>
<script src="./bootstrap.js"></script>
<canvas id="canvas" width="800" height="600">This page contains WebGL content, please enable WebGL in your browser.</canvas>
</body>
</html>