-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (82 loc) · 4.81 KB
/
index.html
File metadata and controls
85 lines (82 loc) · 4.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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanilla Matrix</title>
<link rel="stylesheet" href="style.css">
<!-- <link rel="stylesheet" href="firefox.css"> -->
</head>
<body>
<div class="matrix-container">
</div>
<div id="main" class="main-container">
<div id="Showcases">
<span class="top"></span>
<span class="right"></span>
<span class="bottom"></span>
<span class="left"></span>
<hgroup>
<h1>Showcases</h1>
</hgroup>
<hr>
<section>
<p>
All of my existing and future works will be in my <a href="https://github.com/dnkdev">Github</a> account. Check it out, as you wish.
</p>
</section>
</div>
<div id="Aboutme">
<span class="top"></span>
<span class="right"></span>
<span class="bottom"></span>
<span class="left"></span>
<hgroup>
<h1>About me</h1>
</hgroup>
<hr>
<section>
<p>
I’m trying to free your mind, Neo. But I can only show you the door. You’re the one that has to walk through it. This your last chance. After this there is no turning back.
<br>You take the blue pill, the story ends. You wake up in your bed and believe whatever you want to.
<br>You take the red pill, you stay in Wonderland, and I show you how deep the rabbit hole goes. Remember, all I'm offering is the truth. Nothing more. Have you ever had a dream, Neo, that you were so sure was real? What if you were unable to wake from that dream, Neo? How would you know the difference between the dream world and the real world? The Matrix is the world that has been pulled over your eyes to blind you from the truth. What you know you can’t explain, but you feel it. You’ve felt it your entire life, that there’s something wrong with the world. You don’t know what it is, but it’s there, like a splinter in your mind, driving you mad.
<br>Unfortunately, no one can be told what the Matrix is. You have to see it for yourself. The Matrix is a system, Neo. That system is our enemy. But when you’re inside, you look around, what do you see? Businessmen, teachers, lawyers, carpenters. The very minds of the people we are trying to save. But until we do, these people are still a part of that system and that makes them our enemy. You have to understand, most of these people are not ready to be unplugged. And many of them are so inert, so hopelessly dependent on the system that they will fight to protect it.. I don't like the idea that I'm not in control of my life. Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. What are you waiting for? You're faster than this. Don't think you are, know you are. Come on. Stop trying to hit me and hit me. If real is what you can feel, smell, taste and see, then 'real' is simply electrical signals interpreted by your brain. You have to let it all go, Neo. Fear, doubt, and disbelief, Free your mind. There is a difference between knowing the path and walking the path. To deny our impulses is to deny the very thing that makes us human. As long as the Matrix exists, the human race will never be free.
</p>
</section>
</div>
<div id="Contactme">
<span class="top"></span>
<span class="right"></span>
<span class="bottom"></span>
<span class="left"></span>
<hgroup>
<h1>Contact me</h1>
</hgroup>
<hr>
<section>
<p>
<a href="https://t.me/daudysh">Telegram</a><br>
<a href="https://matrix.to/#/@daniel_daudysh:matrix.org">Matrix</a>
</p>
</section>
</div>
</div>
<header>
<div class="logo">dauda.dev
</div>
<span class="signature">red pill of programming</span>
<!-- <div id= "nav-left-border" class="top"></div> -->
<nav>
<ul>
<li><a href="#Showcases" onclick="open_pop_window(event)">Showcases</a></li>
<li><a href="#Aboutme" onclick="open_pop_window(event)">About me</a></li>
<li><a href="#Contactme" onclick="open_pop_window(event)">Contact me</a></li>
<!-- <span class="theme-picker"></span> -->
</ul>
</nav>
<!-- <div id= "nav-right-border" class="top"></div> -->
</header>
<script src="pop.js"></script>
<script defer src="matrix.js"></script>
</body>
</html>