forked from 0xK3vin/Javascript-Terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 748 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 748 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>
<link rel="stylesheet" href="terminal.css">
<link rel="stylesheet" href="experiment.css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
</head>
<body>
<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>
<script src="terminal.js"></script>
<script src="example.js"></script>
</body>
</html>