-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 1.85 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 1.85 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en" style="background: black">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="manifest.webmanifest" />
<link href="fonts/css.css" rel="stylesheet" />
<title>EmuDevz</title>
<meta
name="description"
content="EmuDevz: A game about building emulators!"
/>
<meta property="og:title" content="EmuDevz" />
<meta
property="og:description"
content="A game about building emulators!"
/>
<meta
property="og:image"
content="https://afska.github.io/emudevz/assets/logo.png"
/>
<meta property="og:url" content="https://afska.github.io/emudevz" />
<meta property="og:type" content="website" />
<script type="module" src="src/index"></script>
</head>
<body style="display: none">
<noscript>You need to enable JavaScript to run this app.</noscript>
<script src="xterm-addon-image.js"></script>
<script src="imgui.umd.js"></script>
<script src="imgui_impl.umd.js"></script>
<script src="imgui_memory_editor.umd.js"></script>
<div id="container">
<div class="screen">
<div id="root" class="crt"></div>
<!-- class="crt" -->
</div>
</div>
<div> </div>
<!-- // HACK: Force browser to download the default font -->
<div id="too-small-overlay" class="_overlay">
<div class="_overlay_content">
❌ Window too small!
<div class="_overlay_subtitle">
This is a desktop-only experience!<br />Press Ctrl- to zoom out.
</div>
</div>
</div>
<div id="webgl-overlay" class="_overlay">
<div class="_overlay_content">
❌ WebGL is disabled!
<div class="_overlay_subtitle">
Please enable it and reload the page.
</div>
</div>
</div>
</body>
</html>