-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (36 loc) · 1.18 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
<!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 user-scalable=no" />
<title>Eric's Portafolio</title>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="css/style.css"
/>
<link rel="icon" type="image/png" href="img/man.png">
<script defer src="js/commands.js"></script>
<script defer src="js/inputRenderer.js"></script>
<script defer type="module" src="js/commandParser.js"></script>
</head>
<body>
<div id="terminal">
<a id="contentHook"></a>
</div>
<div id="command" onclick="focusOnTextArea()">
<textarea
type="text"
id="texter"
onkeydown="moveCursor(this.value.length, event)"
autofocus
></textarea>
<div id="liner">
<span id="typer"></span><b class="cursor" id="cursor">█</b>
<span id="mobileInput"><input type="text" autocapitalize="none" autocorrect="off" spellcheck="false" autocomplete="off" inputmode="text" ></span>
</div>
</div>
</body>
</html>