-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
37 lines (34 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>GhostTerminal</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="matrix-bg"></div>
<div id="terminal">
<div id="header">
ghost@terminal:~$ <span class="instruction">// type "help" for available commands</span>
</div>
<span id="content"></span><span class="cursor"></span>
</div>
<!-- Mobile controls -->
<div id="mobile-controls" class="mobile-only">
<button id="mobile-help">help</button>
<button id="mobile-ls">ls</button>
<button id="mobile-nmap">nmap</button>
<button id="mobile-clear">clear</button>
<button id="mobile-type">type code</button>
</div>
<!-- Mobile input overlay -->
<div id="mobile-overlay" class="mobile-only">
<div id="mobile-input-area">
<p>Tap anywhere to generate code output</p>
<button id="close-overlay">×</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>