-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 772 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 772 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
28
<!DOCTYPE html>
<html lang="en"></html>
<head>
<meta charset="utf-8">
<title>$</title>
<link rel="stylesheet" href="./src/style/terminal.css">
</head>
<body>
<div>
<div id="screen">
<div id="Container">
<div id="input">
<p id="input_title"></p>
<input id="input_source" type="command" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" autofocus>
</div>
<div id="logger">
<div id="wrapper">
</div>
</div>
</div>
</div>
</div>
<script src="./src/js/terminal.js"></script>
<script src="./src/js/commands.js"></script>
</body>
</html>