-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
33 lines (33 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unity WebGL Player | Program42</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 unityInstance = UnityLoader.instantiate(
"unityContainer",
"Build/web_test.json",
{ onProgress: UnityProgress }
);
</script>
</head>
<body>
<div class="webgl-content">
<a href="https://hits.seeyoufarm.com"
><img
src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fmimseong%2FSurviving_in_42.git&count_bg=%2378C9FF&title_bg=%23424242&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false"
/></a>
<div id="unityContainer" style="width: 960px; height: 540px"></div>
<div class="footer">
<div class="webgl-logo"></div>
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
<div class="title">42서울에서 살아남기</div>
</div>
</div>
</body>
</html>