You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
510 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ThreeJS & TypeScript</title>
  6. <!-- loads some basic CSS resets and Styles -->
  7. <style>
  8. html, body, canvas {margin: 0;padding: 0;border: 0;}
  9. canvas {display: block;}
  10. </style>
  11. </head>
  12. <body>
  13. <!-- Application Canvas -->
  14. <canvas id="app"></canvas>
  15. <!-- this needs to be called here to ensure all elements are available -->
  16. <script src="threejssimple.bundle.js" type="text/javascript"></script>
  17. </body>
  18. </html>