-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (30 loc) · 1012 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
29
30
31
32
33
34
35
36
37
<!doctype html>
<html lang="en" onclick="promptFocus()">
<head>
<title>nicocti</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="terminal">
<div class="stdin">
<div class="prompt">
<span class="green">guest</span>
<span class="green">@</span>
<span class="green">nicocti.github.com</span>
<span class="green">:</span>
<span class="green">~</span>
<span class="green">$</span>
<input type="text" autofocus onkeypress="stdin(this)">
</div>
</div>
</div>
<output class="stdout" id="text-output"></output>
<div class="stdout" id="output0">
<div class="box1">test1</div>
<div class="box2">test2</div>
</div>
</body>
<footer>
<script src="script.js"></script>
</footer>
</html>