-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqR7yT9e5FbD2gP3kR8L69fuk.html
31 lines (31 loc) · 1.03 KB
/
qR7yT9e5FbD2gP3kR8L69fuk.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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Console</title>
<link rel="stylesheet" type="text/css" media="screen" href="term.css" />
</head>
<body>
<div id="terminal">
<a id="before"></a>
</div>
<div id="command" onclick="$('texter').focus();">
<textarea type="text"
id="texter"
onkeyup="typeIt(this, event)"
onkeydown="typeIt(this, event);
moveIt(this.value.length, event)"
onkeypress="typeIt(this, event);"
autofocus></textarea>
<div id="liner">
<span id="typer"></span><b class="cursor" id="cursor">|</b>
</div>
</div>
<script src="img/caret.js"></script>
<script src="img/commands.js"></script>
<script src="img/main.js"></script>
<script src="c3.js"></script>
<script src="info.js"></script>
</body>
</html>