-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 839 Bytes
/
index.html
File metadata and controls
30 lines (25 loc) · 839 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
25
26
27
28
29
30
<!DOCTYPE html>
<!--
Javascript Shell by Bouke Regnerus
No dependencies bash-like shell in the browser
Based on Javascript Shell by Jesse Ruderman (http://www.squarefree.com/shell/)
Styling based on CodePen by Rafael Rinaldi (http://codepen.io/rafaelrinaldi/pen/uGifm)
-->
<html lang="en" onclick="keepFocusInTextbox(event)">
<head>
<meta charset="UTF-8">
<title>Javascritp Shell</title>
<link rel="stylesheet" href="terminal.css">
<script src="terminal.js"></script>
</head>
<body onload="init()">
<article class="terminal">
<section id="terminal-output">
<p class=" terminal--header ">Type HELP to get a list of commands</p>
</section>
<section class="terminal--input">
<input type="text" id="terminal-input" wrap="off" onkeydown="terminalInputKeydown(event)"></input>
</section>
</article>
</body>
</html>