-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 855 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/osv.css">
<title>OSv Terminal</title>
<style type="text/css">
body {
background-color: #444;
}
#cmd {
width: 100%;
height: 700px;
margin: 1px;
font-size: 10pt;
}
#status {
font-size: 10pt;
font-weight: bold;
color: darkorange;
}
</style>
</head>
<body>
<div id="status"></div>
<div id="cmd"></div>
<button>Invert</button>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="systemjs/system.js"></script>
<script type="text/javascript">
SystemJS.defaultJSExtensions = true;
System
.import('Main')
.then(null, console.error.bind(console));
</script>
</body>
</html>