-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (35 loc) · 808 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (35 loc) · 808 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
44
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Heizöl Planspiel</title>
<style>
html,
body {
height: 100%;
}
#dos {
width: 100%;
height: 100%;
}
</style>
<!-- js-dos style sheet -->
<link rel="stylesheet" href="/js-dos.css">
<!-- js-dos -->
<script src="/js-dos.js"></script>
</head>
<body>
<div id="dos" style="width: 100%; height: 100%"></div>
<script>
Dos(document.getElementById("dos"), {
url: "/Heizoel.jsdos",
kiosk: true,
theme: "dark",
autoStart: true,
noCloud: true,
noNetworking: true,
softKeyboardLayout: "qwertz",
});
</script>
</body>
</html>