|
@@ -0,0 +1,17 @@
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
|
+<html lang="en">
|
|
|
|
|
+<head>
|
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
|
+ <title>Garden Bed</title>
|
|
|
|
|
+ <style>
|
|
|
|
|
+ *{margin:0;padding:0;box-sizing:border-box;}
|
|
|
|
|
+ #canvas{height:100vh;width:100vw;display:block;}
|
|
|
|
|
+ </style>
|
|
|
|
|
+ <script src="./three.min.js"></script>
|
|
|
|
|
+ <script src="./orbitControls.min.js"></script>
|
|
|
|
|
+</head>
|
|
|
|
|
+<body>
|
|
|
|
|
+ <canvas id="canvas"></canvas>
|
|
|
|
|
+ <script type="module" src="./index.js"></script>
|
|
|
|
|
+</body>
|
|
|
|
|
+</html>
|