-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgame.html
More file actions
59 lines (40 loc) · 1.57 KB
/
Copy pathgame.html
File metadata and controls
59 lines (40 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en-us">
<link rel="stylesheet" href="https://use.typekit.net/zbt3alj.css">
<meta charset="utf-8">
<style>
#c {
display: block;
text-align:center;
margin:auto
}
.logo {margin-left: .5%; margin-top: .5%; height: 80px; width: auto;}
body {background-image: url(images/bg_1.jpg); overflow: hidden; background-size:cover}
body img, body h1 {display: block;
}
body a img {width: 300px; margin-top: 50px;}
body a:hover {opacity: 70%;cursor:pointer;}
@media screen and (max-width: 480px){
.logo {width: 60%; height: auto;margin:
}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>NitorInc. Demo | Web Player</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
<script src="TemplateData/UnityProgress.js"></script>
<script src="Build/UnityLoader.js"></script>
<script>
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/NitorInc Demo WebGL.json", {onProgress: UnityProgress});
</script>
</head>
<body>
<div class="webgl-content">
<div id="gameContainer" style="width: 960px; height: 720px"></div>
</div>
<a href="index.html"><img class="logo" src="images/LogoNitorIncSubtitle.png"></a>
<div id="pagemain">
</div>
</body>
</html>