-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.html
More file actions
38 lines (34 loc) · 1.2 KB
/
Copy pathcli.html
File metadata and controls
38 lines (34 loc) · 1.2 KB
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
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cliX - Command Mode</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="terminal-container">
<div class="terminal-header">
<div class="header-buttons">
<span class="button red"></span>
<span class="button yellow"></span>
<span class="button green"></span>
</div>
<div class="header-title">
<a href="index.html" id="main-link">cliX - Command Mode</a>
</div>
<button id="theme-switcher">theme</button>
</div>
<div id="output" class="terminal-output">
<div id="command-display"></div>
<div class="typing-input-container">
<span class="prompt">$</span>
<input type="text" id="command-input" class="terminal-input" autofocus>
</div>
<div id="command-explanation"></div>
</div>
</div>
<script src="assets/js/cli.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>