-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (122 loc) · 4.17 KB
/
index.html
File metadata and controls
139 lines (122 loc) · 4.17 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Takudzwa Mlambo",
"alternateName": "Cod3Uchiha",
"url": "https://iamtkm.vercel.app",
"image": "https://github.com/Cod3Uchiha.png",
"sameAs": [
"https://www.tiktok.com/@Cod3Uchiha",
"https://www.youtube.com/@Cod3Uchiha",
"https://twitter.com/Cod3Uchiha",
"https://github.com/Cod3Uchiha"
],
"jobTitle": "Node.js Developer",
"description": "Takudzwa Mlambo, known online as Cod3Uchiha, is a Node.js programmer and web developer who creates open-source tools and tutorials."
}
</script>
<title>Code Uchiha</title>
<style>
body {
background-color: #000;
color: #ff0000;
text-align: center;
font-family: "Courier New", monospace;
}
h1 {
color: #f00;
font-size: 36px;
}
.image-container {
margin-top: 20px;
}
img {
width: 300px;
border-radius: 50%;
}
.story {
margin: 20px;
padding: 20px;
background-color: rgba(0, 0, 0, 0.8);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.audio-controls {
margin-top: 20px;
}
.hacker-button {
background-color: #000;
color: #f00;
border: 2px solid #f00;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin-right: 10px;
}
.hacker-button:hover {
background-color: #f00;
color: #fff;
}
.contact-details {
margin-top: 20px;
color: #fff;
}
.copyright {
margin-top: 20px;
color: #fff;
}
</style>
<script>
window.onload = function() {
const audio = new Audio('jchrist.mp3');
const playButton = document.getElementById('play-btn');
const stopButton = document.getElementById('stop-btn');
playButton.addEventListener('click', () => {
audio.play();
});
stopButton.addEventListener('click', () => {
audio.pause();
audio.currentTime = 0;
});
};
document.addEventListener('contextmenu', event => event.preventDefault()); // Disable right-click context menu
document.onkeydown = function (e) { // Disable copy, cut, and paste
if (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 86 || e.keyCode === 85)) {
return false;
} else {
return true;
}
};
</script>
</head>
<body>
<h1>Code Uchiha</h1>
<div class="image-container">
<img src="Uchiha.jpg" alt="Uchiha Clan">
</div>
<div class="story">
<h2>The Uchiha Clan and Coding</h2>
<p>The Uchiha Clan is renowned for their exceptional abilities and Sharingan eye technique. In the world of coding, we strive to develop our own unique skills and techniques, just like the Uchiha Clan.</p>
<p>Programming and developing, like the Sharingan, allow us to perceive and understand the intricacies of technology. With each line of code we write, we unlock new possibilities and shape the digital world around us.</p>
<p>As the Uchiha Clan sought to protect and advance their abilities, we, as developers, aim to use our coding skills to create innovative solutions, build amazing projects, and contribute to the ever-evolving field of technology.</p>
</div>
<div class="audio-controls">
<button id="play-btn" class="hacker-button">Play</button>
<button id="stop-btn" class="hacker-button">Stop</button>
</div>
<div class="contact-details">
<p>Contact me: <a href="https://wa.me/263785028126" style="color: #f00;">WhatsApp: +263785028126</a></p>
<p>GitHub: <a href="https://github.com/Cod3chiha" style="color: #f00;">github.com/Cod3chiha</a></p>
<p>Telegram: <a href="https://t.me/Code_Uchiha" style="color: #f00;">t.me/Code_Uchiha</a></p>
<p>WhatsApp Channel: <a href="https://whatsapp.com/channel/0029VaKjSra9WtC0kuJqvl0g" style="color: #f00;">Code Uchiha whatsapp Channel</a></p>
<p>WhatsApp Group: <a href="https://chat.whatsapp.com/KtKGYZuIK4BEGtHSbjc0yj" style="color: #f00;">Code Uchiha whatsapp Group</a></p>
</div>
<div class="copyright">
<p>© CodeUchiha 2024</p>
<p>The song belongs to <b>Lil Nas X</b> I didn't mean to do wrong.</p>
</div>
</body>
</html>