-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B9ECD7QM09"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-B9ECD7QM09');
</script>
<!-- Google tag (gtag.js) -->
<meta name="description"
content="One-Dark Shell is a terminal emulator based on the One Dark theme. It is a simple and easy to use terminal emulator.">
<meta name="keywords" content="One-Dark Shell, One Dark Shell, One Dark, One-Dark, Terminal, Terminal Emulator">
<meta name="author" content="Sashank Bhamidi">
<meta name="language" content="English">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>One-Dark Shell</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link rel="icon" type="image/x-icon" href="images/fav-icon.png" />
</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="js/cursor.js"></script>
<script src="js/commands.js"></script>
<script src="js/main.js"></script>
<script src="/assets/js/url-handler.js"></script>
</body>
</html>