generated from hchiam/learning-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 1.13 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Three.js demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<link href="styles/main.css" rel="stylesheet" type="text/css" />
<!--
Include the main three.js script.
The global variable THREE will be
available for use in any scripts
loaded after this one.
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r99/three.min.js"></script>
</head>
<body>
<div id="scene-container">
<!-- This div will hold our scene-->
</div>
<footer>
<!--
Finally, include the script that
runs your three.js app.
-->
<script type="module" src="js/helpers/keyboardControl.js"></script>
<!-- <script type="module" src="js/app.js"></script> -->
<!-- <script type="module" src="js/alternative.js"></script> -->
<!-- <script type="module" src="js/alternative-keyboard.js"></script> -->
<!-- <script type="module" src="js/game.js"></script> -->
<script type="module" src="js/car.js"></script>
</footer>
</body>
</html>