-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
35 lines (32 loc) · 1.09 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
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<style>
html {
background: #000
}
</style>
<title>Monochrome Operating System</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Monochrome Operating System: The Game">
<meta name="author" content="Isaiah Odhner">
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="mosgui.css" />
<link rel="stylesheet" href="mos.css" />
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body bgcoral="boulder-star" class="color">
<script src="mosgui.js"></script>
<script>onerror = gui.err; gui.overlay();</script>
<script src="lib/ace.js"></script>
<script src="lib/three.min.js"></script>
<script src="lib/Detector.js"></script>
<script src="lib/TrackballControls.js"></script>
<script src="core-programs.js"></script>
<script src="map.js"></script>
<script src="monochromium.js"></script>
<script src="mos.js"></script>
</body>
</html>