index.html 445 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. html {
  10. overflow: hidden;
  11. font-family: Arial, Helvetica, sans-serif;
  12. user-select: none;
  13. }
  14. canvas {
  15. image-rendering: pixelated;
  16. outline: none;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <script src="./index.js"></script>
  22. </body>
  23. </html>