-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 4.21 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<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>LC Terminal</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="terminal">
<p class>
<span class="index">Luis Chavez (LC) Unincorporated. All rights reserved. </span>
</p>
<p class>██╗ ██████╗ ████████╗   ███████╗ ██████╗  ███╗ ███╗  ██╗ ███╗  ██╗ █████╗ ██╗  /\_/\ /\</p>
<p class>██║ ██╔════╝ ╚══██╔══╝   ██╔════╝ ██╔══██╗  ████╗ ████║  ██║ ████╗  ██║ ██╔══██╗ ██║ / o o \ \ \</p>
<p class>██║ ██║ ██║  █████╗  ██████╔╝  ██╔████ ╔██║ ██║ ██╔██╗  ██║ ███████║  ██║ / Y \/ /</p>
<p class>██║ ██║ ██║  ██╔══╝  ██╔══██╗  ██║╚██ ╔╝██║ ██║ ██║╚██╗ ██║ ██╔══██║  ██║ / \/</p>
<p class>███████╗╚██████╗ ██║  ███████╗ ██║  ██║  ██║ ╚═╝  ██║ ██║ ██║  ╚████║ ██║ ██║  ███████╗ \ | || | / </p>
<p class>╚══════╝ ╚═════╝ ╚═╝  ╚══════╝ ╚═╝  ╚═╝  ╚═╝ ╚═╝ ╚═╝ ╚═╝   ╚═══╝ ╚═╝ ╚═╝  ╚══════╝ ` | || |' </p>
<p class>
<span class="color2">Welcome to my web terminal...</span>
</p>
<p class>
<span class="color2">For a list of available commands, type</span>
<span class="command">'help'</span>
<span class="color2">.</span>
</p>
<a id="before"></a>
</div>
<div id="command" onclick="$('texts').focus();">
<textarea type="text" id="texts" 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" style="left: 0px;">█</b>
</div>
</div>
<script src="script.js"></script>
<!--
This script places a badge on your repl's full-browser view back to your repl's cover
page. Try various colors for the theme: dark, light, red, orange, yellow, lime, green,
teal, blue, blurple, magenta, pink!
-->
</body>
</html>