forked from xarantolus/ax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ax - x86-64 emulation in your browser</title>
<meta name="description" content="ax is an x86-64 emulator that runs in your browser via WebAssembly. It can be used via an NPM package" />
<meta name="keywords" content="x86-64, emulator, webassembly, npm" />
<meta name="author" content="xarantolus" />
<script type="ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "ax",
"applicationCategory": "Emulator",
"url": "https://ax.010.one",
"downloadUrl": "https://www.npmjs.com/package/ax-x86",
"description": "ax is an x86-64 emulator that runs in your browser via WebAssembly. It can be used via an NPM package",
"keywords": "x86-64, emulator, webassembly, npm",
"author": {
"@type": "Person",
"name": "xarantolus",
"url": "https://010.one",
"sameAs": "https://010.one/"
}
}
</script>
</head>
<body>
<div id="app">
<noscript>
<strong>
This page requires JavaScript and WebAssembly to run.
Please make sure your browser supports JavaScript and WebAssembly and reload the page after enabling it.
</strong>
</noscript>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>