-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (38 loc) · 1.37 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
<!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">
<link rel="stylesheet" href="style.css">
<style>
body {
margin: 0;
}
</style>
</head>
<!-- TODO fix globe ratio and fitability-->
<!-- TODO make fabric nav-bar button icons and functions-->
<!-- <img src="SidetrackedDaysBG.jpg" style="width:100%"> -->
<!-- !!! UNCOMMENT FOR GLASS V1 -->
<!-- <div class="background">
<div class="glass">
<div class="card-content">
<h3 class="card-title">Glassmorphism is awesome</h3>
<p>A modern CSS UI library based on the glassmorphism design principles that will help you quickly design and build beautiful websites and applications.</p>
<a href="https://ui.glass">Read more</a>
</div>
<div id="globe"></div>
</div>
</div> -->
<!-- !!! NEUMORPHISM V1 -->
<body>
<div id="globe"></div>
</body>
<!-- Three.js library -->
<script src="https://threejs.org/build/three.min.js"></script>
<script src="https://cdn.rawgit.com/mrdoob/three.js/master/examples/js/controls/OrbitControls.js"></script>
<script src="https://cdn.rawgit.com/mrdoob/three.js/master/examples/js/loaders/GLTFLoader.js"></script>
<script src="globe.js"></script>
</body>
</html>