index.html 580 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <title>Page Title</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1" />
  8. <style>
  9. *{
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. }
  14. canvas {
  15. width: 800px;
  16. height: 800px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <canvas id="myCanvas" width="800" height="800">
  22. Your browser does not support the HTML5 canvas tag.
  23. </canvas>
  24. <script src="js/CAD.js"></script>
  25. <script src="model/data.js"></script>
  26. </body>
  27. </html>