index.html 630 B

123456789101112131415161718192021222324
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>iHanoi</title>
  6. <script src="https://cdn.jsdelivr.net/npm/phaser@3.16.2/dist/phaser.js"></script>
  7. <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
  8. <style type="text/css">
  9. body {
  10. margin: 0;
  11. }
  12. </style>
  13. <link rel='stylesheet' type='text/css' href='./css/styles.css'>
  14. </head>
  15. <body>
  16. <script src="js/iHanoiFunctions.js"></script>
  17. <script src="js/phaserConfig.js"></script>
  18. </body>
  19. </html>