index.html 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <script type="importmap">
  7. {
  8. "imports": {
  9. "assets/": "./scripts/assets/",
  10. "space/": "./scripts/space/",
  11. "shelf/": "./scripts/shelf/",
  12. "selector/": "./scripts/selector/",
  13. "settings/": "./scripts/settings/",
  14. "interface/": "./scripts/interface/",
  15. "three-js": "https://cdn.jsdelivr.net/npm/[email protected]/build/three.module.js",
  16. "three-js/addons/": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/"
  17. }
  18. }
  19. </script>
  20. <script type="module" src="scripts/loader.js"></script>
  21. <link rel="stylesheet" type="text/css" href="theme/style/loader.css">
  22. <link rel="preconnect" href="https://fonts.googleapis.com">
  23. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  24. <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
  25. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
  26. </head>
  27. <body>
  28. <div class="app"></div>
  29. </body>
  30. </html>