-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 920 Bytes
/
index.html
File metadata and controls
43 lines (38 loc) · 920 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Produktor.io</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
color: #808080;
font-family: Monospace;
font-size: 13px;
text-align: center;
background-color: #000;
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 0px;
width: 100%;
padding: 5px;
z-index: 100;
}
a {
color: #0080ff;
}
b {
color: lightgreen
}
</style>
<script type="application/javascript" src="assets/js/ui.min.js"></script>
<script src="assets/js/renderers/Projector.js"></script>
<script src="assets/js/renderers/CanvasRenderer.js"></script>
<script type="application/javascript" src="assets/js/front.js"></script>
</head>
<body>
</body>
</html>