-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 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
<!DOCTYPE html>
<html style="margin:0;width:100%;height: 100%;">
<head>
<meta charset="utf-8">
<title>Catsay Web</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<style>
#terminal {
overflow: hidden;
width: 100%;
height: 100%;
/* <- fixed height */
font-size: 16px;
line-height: 17px;
/* <- initial line-height */
}
</style>
<link rel="stylesheet" href="node_modules/@xterm/xterm/css/xterm.css" />
<script type="module" src="node_modules/@xterm/xterm/lib/xterm.js"></script>
</head>
<body style="background-color:#000000;margin:0;width:100%;height: 100%;">
<div id="terminal" style="margin:0;width:100%;height: 100%;"></div>
<noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
<script type="module" src="/src/index.ts"></script>
</body>
</html>