-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoom.html
More file actions
26 lines (26 loc) · 944 Bytes
/
doom.html
File metadata and controls
26 lines (26 loc) · 944 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
<!doctype html>
<html>
<head>
<title>DOOM</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
html, body, #jsdos {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<script src="https://js-dos.com/v7/build/releases/latest/emulators/emulators.js"></script>
<script src="https://js-dos.com/v7/build/releases/latest/emulators-ui/emulators-ui.js"></script>
<link rel="stylesheet" href="https://js-dos.com/v7/build/releases/latest/emulators-ui/emulators-ui.css">
</head>
<body>
<div id="jsdos" />
<script>
emulators.pathPrefix = "https://xen486.github.io/v7.5.0/";
Dos(document.getElementById("jsdos"))
.run("https://xen486.github.io/doom.jsdos")
</script>
</body>
</html>