forked from libapps/libapps-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnassh.html
More file actions
40 lines (35 loc) · 1.13 KB
/
nassh.html
File metadata and controls
40 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<!-- These are used when creating shortcuts akin to PWAs. -->
<link rel='icon' type='image/png' href='../images/dev/icon-16.png' sizes='16x16'/>
<link rel='icon' type='image/png' href='../images/dev/icon-24.png' sizes='24x24'/>
<link rel='icon' type='image/png' href='../images/dev/icon-32.png' sizes='32x32'/>
<link rel='icon' type='image/png' href='../images/dev/icon-48.png' sizes='48x48'/>
<link rel='icon' type='image/png' href='../images/dev/icon-128.png' sizes='128x128'/>
<!-- Manifest used to make the page installable as a PWA. -->
<link rel="manifest" href="../webapp_manifest.json">
<script type='module' src='../js/nassh_main.js'></script>
<style>
body {
position: absolute;
padding: 0;
margin: 0;
height: 100%;
width: 100%;
overflow: hidden;
background-color: black;
}
#terminal {
display: block;
position: relative;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id='terminal'></div>
</body>
</html>