-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.56 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
45
46
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>FluffOS v2019</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui" />
<link rel="stylesheet" href="normalize.css"/>
<link rel="stylesheet" href="xterm.css"/>
<style>
@font-face {
font-family: 'Noto Sans Mono';
src: url('NotoSansMono-VariableFont_wdth,wght.ttf') format("truetype");
font-variation-settings: 'wght' 400;
}
html, body {
height: 100%;
overflow: hidden;
font-family: 'Noto Sans Mono', monospace;
font-size: medium;
}
</style>
<script src="xterm.min.js"></script>
<script src="xterm-addon-attach.min.js"></script>
<script src="xterm-addon-fit.min.js"></script>
<script src="xterm-addon-web-links.min.js"></script>
<script src="widechar_width.js"></script>
<script src="xterm-addon-unicode14.js"></script>
<script src="jquery.min.js"></script>
<script src="fontobserver.js"></script>
<script src="example.js"></script>
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<div id="container" style="position:relative; display: flex; flex-direction: column; height: 100vh; margin: 0; padding: 0;">
<div id="terminal" style="flex: 1"></div>
<input id="command" style="height: 15px; width: 100%" />
</div>
</body>
</html>