-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
23 lines (22 loc) · 1006 Bytes
/
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
<!doctype html>
<html>
<head>
<meta name="title" content="ChainOS">
<meta name="description" content="A simple, programmable, web-based operating system">
<meta name="keywords" content="operating system,webos,chainos">
<meta name="robots" content="index, nofollow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Adrian Gjerstad">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChainOS</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/addons/fit/fit.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.css">
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<div class="terminal"></div>
<script src="app.js"></script>
</body>
</html>