| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Fourteen Screws Engine</title>
- <style>
- body {
- position: absolute;
- top: 0;
- left: 0;
- margin: 0;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- #canvas {
- width: 1280px;
- aspect-ratio: 8/5;
- }
- </style>
- </head>
- <body style="text-align: center">
- <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
- <canvas id="canvas" width="320" height="200"></canvas>
- <script src="./bootstrap.js"></script>
- </body>
- </html>
|