-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (29 loc) · 851 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>
<head>
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta charset="UTF-8">
<title>Strm</title>
<script src="lib/require.min.js" type="text/javascript"></script>
<style type="text/css">
canvas {
position: absolute;
border: solid 1px #707070;
}
@font-face {
font-family: 'MSU1';
src: url('font/MSU1.ttf');
}
#loadingPlaceholder {
font-family: "MSU1";
font-size: 20px;
color: #a0a0a0;
}
</style>
</head>
<body style="background: #202020; cursor:none">
<div style="text-align: center;" id="loadingPlaceholder">Initializing. Please wait.</div>
</body>
<script src="js/main.js" type="text/javascript"></script>
</html>