-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 977 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>GGB</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
margin: 0px;
/*background-color: #000000;*/
overflow: hidden;
}
</style>
<!-- BEGIN Humus Acknowledgement
Golden Gate cube texture images aren't mine, thank you to Humus for them:
Thanks to Emil Persson, aka Humus - http://www.humus.name
=======
License
=======
Humus images are licensed under a Creative Commons Attribution 3.0 Unported License.
http://creativecommons.org/licenses/by/3.0/
=======
END Humus Acknowledgement -->
</head>
<body>
<!-- JS will add the visible DOM element -->
<script src="js/dist/three.js"></script>
<script src="js/dist/stats.min.js"></script>
<script src="js/dist/dat.gui.min.js"></script>
<script src="js/dist/controls/OrbitControls.js"></script>
<script src="js/sketch.js"></script>
</body>
</html>