| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <style>
- *{
- margin: 0;
- padding: 0;
- border: 0;
- }
- canvas {
- width: 800px;
- height: 800px;
- }
- </style>
- </head>
- <body>
- <canvas id="myCanvas" width="800" height="800">
- Your browser does not support the HTML5 canvas tag.
- </canvas>
- <script src="js/CAD.js"></script>
- <script src="model/data.js"></script>
- </body>
- </html>
|