index.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <!DOCTYPE html>
  2. <html lang="en_us">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
  6. <link rel="icon" href="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3E%3Ctext%20x='0'%20y='14'%3E🔷%3C/text%3E%3C/svg%3E" type="image/svg+xml" />
  7. <title>P4ck3t - a js13k game entry by EyeOfMidas</title>
  8. <style type="text/css">
  9. html,
  10. body {
  11. margin: 0;
  12. padding: 0;
  13. overflow: hidden;
  14. background-color: #202020;
  15. height: 100%;
  16. }
  17. canvas {
  18. width: 100%;
  19. height: 100%;
  20. }
  21. #game {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. #debugger-output {
  26. color: red;
  27. position: absolute;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. }
  32. #endgame {
  33. width: 100%;
  34. height: 100%;
  35. background-color: white;
  36. padding: 4px;
  37. display: none;
  38. }
  39. #endgame--footer {
  40. position: absolute;
  41. bottom: 0;
  42. text-align: center;
  43. width: 100%;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div id="debugger-output"></div>
  49. <div id="game"></div>
  50. <div id="endgame">
  51. <h1>Response 404: Page Not Found</h1>
  52. <p>This server has been decommissioned.</p>
  53. <p>Please reload if you want to make the request again.</p>
  54. <p id="endgame--footer">P4ck3t: a js13k game submission by EyeOfMidas. Thanks for playing!</p>
  55. </div>
  56. <!-- <script src="./min.js"></script> -->
  57. <script src="./KeyCode.js"></script>
  58. <script src="./manualtween.js"></script>
  59. <script src="./colors.js"></script>
  60. <script src="./dialog.js"></script>
  61. <script src="./sound.js"></script>
  62. <script src="./menu-scene.js"></script>
  63. <script src="./overworld-scene.js"></script>
  64. <script src="./puzzle-scene.js"></script>
  65. <script src="./core.js"></script>
  66. </body>
  67. </html>