-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathterminal.html
More file actions
27 lines (27 loc) · 871 Bytes
/
Copy pathterminal.html
File metadata and controls
27 lines (27 loc) · 871 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lost in CYBERSPACE - Terminal</title>
<link rel="stylesheet" href="./styles/terminal.css" />
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<div class="output container">
<h3>Lost in <span class="logo">CYBERSPACE</span> - Terminal</h3>
<div class="t" id="terminal">
<p>Welcome NAVIGATOR!</p>
<br/>
<p>Type `help` for list of available commands.</p>
</div>
<p class="ti-wrapper">
<input class="ti color-green" id="ti" type="text" autofocus="true" spellcheck="false" />
</p>
</div>
<div class="scanlines"></div>
<script src="./js/network/network.js"></script>
<script src="./js/terminal/score.js"></script>
<script src="./js/terminal/dom-manipulator.js"></script>
<script src="./js/terminal/terminal.js"></script>
</body>
</html>