-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 995 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Magarus CLI</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
</head>
<body>
<div id="terminal">
<a id="before"></a>
</div>
<div id="console_command" onclick="$('console_line').focus();">
<textarea type="text" id="console_line" autofocus
onkeyup="typeIt(this, event)"
onkeydown="typeIt(this, event);
moveIt(this.value.length, event)"
onkeypress="typeIt(this, event);">
</textarea>
</div>
<div id="prompt">
<span id="prompt_sp"></span><b class="cursor" id="cursor">█</b>
</div>
<script src="js/cursor.js"></script>
<script src="js/commands.js"></script>
<script src="js/main.js"></script>
</body>
</html>