index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Cliquez sur le Français</title>
  7. <style>
  8. /* Reset CSS: Please avoid making changes here unless you know what you're doing :) */
  9. *,
  10. *::before,
  11. *::after {
  12. margin: 0;
  13. padding: 0;
  14. box-sizing: border-box;
  15. }
  16. html, body {
  17. width: 100%;
  18. height: 100%;
  19. }
  20. body {
  21. line-height: 1;
  22. font-family: Arial, sans-serif;
  23. background-color: #040218;
  24. }
  25. ol, ul {
  26. list-style: none;
  27. }
  28. img, video {
  29. max-width: 100%;
  30. height: auto;
  31. display: block;
  32. }
  33. a {
  34. text-decoration: none;
  35. color: inherit;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div id="game-container"></div>
  41. <script src="./phaser.js"></script>
  42. <script type="module" src="./src/main.js"></script>
  43. </body>
  44. </html>