index.html 395 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>iHanoi</title>
  6. <script src="http://cdn.jsdelivr.net/npm/phaser@3.16.2/dist/phaser.js"></script>
  7. <style type="text/css">
  8. body {
  9. margin: 0;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <script src="js/iHanoiFunctions.js"></script>
  15. <script src="js/phaserConfig.js"></script>
  16. </body>
  17. </html>