12345678910111213141516171819 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>iHanoi</title>
- <script src="http://cdn.jsdelivr.net/npm/phaser@3.16.2/dist/phaser.js"></script>
- <style type="text/css">
- body {
- margin: 0;
- }
- </style>
- </head>
- <body>
- <script src="js/iHanoiFunctions.js"></script>
- <script src="js/phaserConfig.js"></script>
- </body>
- </html>
|