-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 751 Bytes
/
index.html
File metadata and controls
37 lines (31 loc) · 751 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Low Poly 3D Background</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 {
background-color: #000000;
margin: 0px;
overflow: hidden;
}
#logo {
position: absolute;
width: 150px;
height: 150px;
top: 50%;
left: 50%;
margin-left: -75px;
margin-top: -75px;
}
</style>
</head>
<body>
<img id="logo" src="library/logo.svg" />
<div id="container"></div>
<script src="build/js/vendors.js"></script>
<script src="library/js/OrbitControls.js"></script>
<script src="build/js/application.js"></script>
</body>
</html>