-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.01 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
<!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>Samuel Veronese</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<link rel="icon" type="image/x-icon" href="img/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/caret.js"></script>
<script src="js/commands.js"></script>
<script src="js/main.js"></script>
</body>
</html>