-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 1.81 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacker Themed Design</title>
<style>
body {
background: url('https://example.com/matrix-background.jpg');
color: #00ff00;
font-family: monospace;
overflow: hidden;
}
.status {
position: absolute;
top: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
}
.nodes {
position: absolute;
bottom: 10px;
left: 10px;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
}
.logs {
position: absolute;
top: 50px;
left: 10px;
right: 10px;
bottom: 50px;
background: rgba(0, 0, 0, 0.7);
overflow: auto;
padding: 10px;
}
.banner {
position: absolute;
width: 100%;
background: rgba(0, 0, 0, 0.7);
color: #00ff00;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<div class="status">
<h3>System Status</h3>
<p>Online</p>
</div>
<div class="nodes">
<h3>Access Nodes</h3>
<ul>
<li>Discord Ksign</li>
<li>Delta Executor</li>
</ul>
</div>
<div class="logs">
<h3>Terminal Logs</h3>
<pre>
[INFO] System booting...
[INFO] Accessing nodes...
[ERROR] Node Ksign offline.
[INFO] Node Delta Executor online.
</pre>
</div>
<div class="banner">
<h2>Welcome to the Hacker Zone!</h2>
</div>
</body>
</html>