| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Cliquez sur le Français</title>
- <style>
- /* Reset CSS: Please avoid making changes here unless you know what you're doing :) */
- *,
- *::before,
- *::after {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- html, body {
- width: 100%;
- height: 100%;
- }
-
- body {
- line-height: 1;
- font-family: Arial, sans-serif;
- background-color: #040218;
- }
-
- ol, ul {
- list-style: none;
- }
-
- img, video {
- max-width: 100%;
- height: auto;
- display: block;
- }
-
- a {
- text-decoration: none;
- color: inherit;
- }
- </style>
- </head>
- <body>
- <div id="game-container"></div>
- <script src="./phaser.js"></script>
- <script type="module" src="./src/main.js"></script>
- </body>
- </html>
|