-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
21 lines (21 loc) · 809 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Modern ThreeJS ⚡️</title>
</head>
<body>
<img src="favicon.svg" alt="Modern ThreeJS" class="logo" />
<canvas id="webgl"></canvas>
<footer class="footer">
Made by
<a href="https://github.com/alvarosabu" target="_blank">Alvaro Saburido</a>
with <a id="threejs-version" href="https://threejs.org/" target="_blank">ThreeJS</a> powered by
<a href="https://vitejs.dev/" target="_blank">ViteJS ⚡️</a>
</footer>
<script type="module" src="/src/main.ts"></script>
<script type="module" src="/src/footer.ts"></script>
</body>
</html>