-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.32 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
<!doctype html>
<html lang="en">
<head>
<title>bash</title>
<!-- powered by the magic of termynal -->
<meta charset="utf-8">
<link rel="stylesheet" href="termynal.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Mono">
<style>
body {
padding: 0; margin: 0;
background: #1a1e24;
width: 100%;
min-height: 100vh;
display: -webkit-box; display: -ms-flexbox; display: flex;
-webkit-box-align: center; -ms-flex-align: center; align-items: center;
-webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body>
<div id="cmd" data-termynal>
<span data-ty="input">ls</span>
<span data-ty>'my stupid website'</span>
<span data-ty="input">cd "my stupid website"</span>
<span data-ty="input">ls</span>
<span data-ty>index.html</span>
<span data-ty="input">cat index.html</span>
<span data-ty>cat: index.html: No such file or directory</span>
<span data-ty="input">exit</span>
<script src="termynal.js" data-termynal-container="#cmd"></script>
</body>
</html>