-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrizitis.html
More file actions
102 lines (85 loc) · 2.57 KB
/
rizitis.html
File metadata and controls
102 lines (85 loc) · 2.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>UNIX Terminal - Matrix Style</title>
<style>
body {
background-color: #000;
color: #00FF00;
font-family: "Courier New", Courier, monospace;
padding: 20px;
line-height: 1.5;
}
.terminal {
max-width: 800px;
margin: 0 auto;
background-color: #111;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 20px #00FF00;
}
.prompt {
color: #00FF00;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
white-space: nowrap;
overflow: hidden;
border-right: 0.15em solid #00FF00;
animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #00FF00; }
}
pre.ascii {
color: #00FF00;
font-size: 14px;
}
a {
color: #00FF00;
text-decoration: underline;
}
footer {
margin-top: 40px;
color: #00FF00;
font-size: 0.8rem;
text-align: center;
opacity: 0.6;
}
</style>
</head>
<body>
<div class="terminal">
<h1>Welcome to the Matrix</h1>
<pre class="ascii">
_______ _______ _______ _______ _______ _______ _______
( ____ \( ___ )( )( ____ \ ( ___ )|\ /|( ____ \( ____ )
| ( \/| ( ) || () () || ( \/ | ( ) || ) ( || ( \/| ( )|
| | | (___) || || || || (__ | | | || | | || (__ | (____)|
| | ____ | ___ || |(_)| || __) | | | |( ( ) )| __) | __)
| | \_ )| ( ) || | | || ( | | | | \ \_/ / | ( | (\ (
| (___) || ) ( || ) ( || (____/\ | (___) | \ / | (____/\| ) \ \__
(_______)|/ \||/ \|(_______/ (_______) \_/ (_______/|/ \__/
</pre>
<p><span class="prompt">user@matrix:~$</span> ls -la</p>
<p>drwxr-xr-x 5 user user 4096 Mar 9 2025 .</p>
<p>drwxr-xr-x 12 root root 4096 Mar 9 2025 ..</p>
<p>-rw-r--r-- 1 user user 220 Mar 9 2025 README.md</p>
<p>-rw-r--r-- 1 user user 514 Mar 9 2025 secrets.txt</p>
<p><span class="prompt">user@matrix:~$</span> cat secrets.txt</p>
<p>The secret of the universe is 42.</p>
<p><span class="prompt">user@matrix:~$</span> <a href="#">Disconnect</a></p>
<footer>
© 2025 rizitis. No rights reserved.
</footer>
</div>
</body>
</html>