-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathterminal.html
More file actions
24 lines (22 loc) · 846 Bytes
/
terminal.html
File metadata and controls
24 lines (22 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title id="console-name">HTML5 Web Terminal___</title>
<link href="http://fonts.googleapis.com/css?family=Inconsolata"
rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="./terminal.css" />
</head>
<body>
<div id="container">
<output></output>
<div id="input-line" class="input-line">
<div class="prompt"></div><div><input class="cmdline" autofocus /></div>
</div>
</div>
<!--<script src="http://www.codehelper.io/api/ips/?js"></script>-->
<script> window.$ = window.jQuery = require('./node_modules/jquery/dist/jquery.min.js');</script>
<script src="terminal.js"></script>
<script src="terminal-app.js"></script>
</body>
</html>