1
0
Fork 0
spacetac/out/index.html

54 lines
1,006 B
HTML
Raw Normal View History

2014-12-28 00:00:00 +00:00
<!DOCTYPE HTML>
<html lang="en">
2014-12-28 00:00:00 +00:00
<head>
<meta charset="utf-8" />
2014-12-28 00:00:00 +00:00
<title>SpaceTac</title>
<style>
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
background: #000000;
padding: 0;
margin: 0;
}
.game {
width: 100%;
height: 100vh;
}
2017-08-15 22:30:19 +00:00
@font-face {
font-family: 'SpaceTac';
2018-03-08 19:16:05 +00:00
src: url('fonts/daggersquare.regular.otf');
2017-08-15 22:30:19 +00:00
}
body {
font-family: 'SpaceTac';
}
.fontLoader {
position: absolute;
left: -1000px;
}
</style>
2014-12-28 00:00:00 +00:00
</head>
2014-12-28 00:00:00 +00:00
<body>
<div id="-space-tac" class="game"></div>
2017-08-15 22:30:19 +00:00
<div class=".fontLoader">.</div>
2014-12-28 00:00:00 +00:00
<script src="dependencies.js"></script>
<script src="app.js"></script>
2014-12-28 00:00:00 +00:00
<script>
window.onload = function () {
2017-09-24 22:23:22 +00:00
window.game = new TK.SpaceTac.MainUI();
};
</script>
2014-12-28 00:00:00 +00:00
</body>
</html>