-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 1.18 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>どすこい塾 Terminal</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="terminal">
<pre>
_ _ _ _ ____ _ _ ____ _ _ _
| | | | ___| | | ___ | _ \ ___ ___ _ _| | _____ (_) / ___|___ _ __ ___ _ __ ___ _ _ _ __ (_) |_ _ _| |
| |_| |/ _ \ | |/ _ \ | | | |/ _ \/ __| | | | |/ / _ \| | | | / _ \| '_ ` _ \| '_ ` _ \| | | | '_ \| | __| | | | |
| _ | __/ | | (_) | | |_| | (_) \__ \ |_| | < (_) | | | |__| (_) | | | | | | | | | | | |_| | | | | | |_| |_| |_|
|_| |_|\___|_|_|\___/ |____/ \___/|___/\__,_|_|\_\___/|_| \____\___/|_| |_| |_|_| |_| |_|\__,_|_| |_|_|\__|\__, (_)
|___/
</pre>
<div id="output"></div>
<div id="input-line" class="input-line">
<span class="prompt">$</span>
<input type="text" id="input" autofocus>
</div>
</div>
<script src="script.js"></script>
<script src="commands.js"></script>
</body>
</html>