-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (38 loc) · 1.22 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>modelo 1</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<link rel="icon" href="https://discoverthreejs.com/favicon.ico" type="image/x-icon">
<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="js/vendor/three/three.js"></script>
<!--
Include the OrbitControls script.
This must be included AFTER the three.js script as it
needs to use the global THREE variable
-->
<script src="js/vendor/three/OrbitControls.js"></script>
<!--
Include the GLTFLoader script. This also needs to be loaded after the three.js script
-->
<script src="js/vendor/three/GLTFLoader.js"></script>
</head>
<body>
<h1><a href="https://www.facebook.com/Cristixndr3s">Cristixndr3s</a> modelo 1.1</h1>
<div id="scene-container">
<!-- This div will hold our scene-->
</div>
<!--
Finally, include the script that
runs your three.js app.
-->
<script src="js/app.js"></script>
</body>
</html>