index.html 556 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Garden Bed</title>
  6. <style>
  7. *{margin:0;padding:0;box-sizing:border-box;}
  8. #canvas{height:100vh;width:100vw;display:block;}
  9. </style>
  10. <script type="importmap">
  11. {
  12. "imports": {
  13. "three": "/three.min.js",
  14. "orbitControls": "/orbitControls.min.js"
  15. }
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. <canvas id="canvas"></canvas>
  21. <script type="module" src="/garden-bed.js"></script>
  22. </body>
  23. </html>