-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The cake is a lie.">
<title>PortalBeans</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/92/three.min.js"></script>
<script src='http://threejs.org/examples/js/controls/OrbitControls.js'></script>
<script src="https://cdn.jsdelivr.net/gh/mrdoob/three.js@r92/examples/js/loaders/GLTFLoader.js"></script>
<link rel="stylesheet" href="./index.css">
<script src="./beans.js" type="module"></script>
</head>
<body>
<div class="controls">
<button data-tooltip="Change the theme" id="themebtn">☀️</button>
<button data-tooltip="Toggle display mode" id="rotatebtn">🔄</button>
</div>
<footer id="footer">
<span>Version 1.0.0 </span>
<span>© 2021 Shane Paton</span>
</footer>
</body>
</html>