-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
28 lines (28 loc) · 854 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>~/</title>
<link rel="shortcut icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="styles/main.css" />
</head>
<body id="body">
<!-- <header class="status-bar"></header> -->
<div class="pad-terminal">
<div class="scrollable">
<div id="terminal">
<div id="output"></div>
<div class="prompt">
<span class="green">peter</span>
<span>@</span>
<span class="cyan">macbook</span>
<span>:</span>
<span class="purple">~</span>
<span class="red"> $ </span>
<input id="input" tabindex="1" autofocus />
</div>
</div>
</div>
</div>
<script type="module" src="js/main.js" hidden></script>
</body>
</html>