forked from peterrauscher/startpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.04 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
34
35
36
37
<!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">
<script>
window.addEventListener("DOMContentLoaded", (event) => {
setTimeout(() => {
document.getElementById("input").focus();
}, 100);
});
</script>
<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">Mafien_0's</span>
<span>@</span>
<span class="cyan">Pc</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>