-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 975 Bytes
/
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
<!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 | Sunny Land</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/SunnyLand WebGL build v1.0.json',
{ onProgress: UnityProgress }
);
</script>
</head>
<body>
<h1>Welcome to LedWar Games, here are some of my games:</h1>
<ul>
<li><a href="/first-game/">2D Platformer Demo</a></li>
<li><a href="/game2048/">2048</a></li>
<li><a href="/sunny-land/">Sunny Land Demo</a></li>
<li><a href="https://play.google.com/store/apps/details?id=com.tuando.ludo&hl=en">Sweety Ludo</a></li>
</ul>
</body>
</html>