index.html 742 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Fourteen Screws Engine</title>
  6. <style>
  7. body {
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. margin: 0;
  12. width: 100%;
  13. height: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. #canvas {
  20. width: 1280px;
  21. aspect-ratio: 8/5;
  22. }
  23. </style>
  24. </head>
  25. <body style="text-align: center">
  26. <noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
  27. <canvas id="canvas" width="320" height="200"></canvas>
  28. <script src="./bootstrap.js"></script>
  29. </body>
  30. </html>