index.html 444 B

1234567891011121314151617
  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 src="./three.min.js"></script>
  11. <script src="./orbitControls.min.js"></script>
  12. </head>
  13. <body>
  14. <canvas id="canvas"></canvas>
  15. <script type="module" src="./index.js"></script>
  16. </body>
  17. </html>