-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (25 loc) · 809 Bytes
/
index.html
File metadata and controls
31 lines (25 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SGI TP2</title>
<link rel="shortcut icon" href="image/favicon/3d.png" />
<link rel="stylesheet" href="styles.css">
<script async src="https://unpkg.com/es-module-shims@1.8.0/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.156.1/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.156.1/examples/jsm/"
}
}
</script>
</head>
<body>
<div id="canvas"></div>
<div id="camera"></div>
<!-- <div id="delete-me">In your browser open console and check for details
<p>MyContents.js constructor has the file reading and parsing starting point
</div> -->
<script type="module" src="main.js"></script>
</body>
</html>