YAKLAŞIK 2 SAAT SÜRDÜ BASİT BİR İNDEX
KODDA DÜZENLEME YAPABİLRİSİNİZ
HTML:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<title>Hacked By Turk Hack Team</title>
<link rel="icon" href="https://i.hizliresim.com/W7GZ5L.png" type="image/png" />
<style>
body,html{margin:0;padding:0;overflow:hidden;background:transparent;color:#fff;font-family:monospace}
canvas{position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1}
.container{text-align:center;padding-top:100px;position:relative;z-index:1}
h1{font-size:36px;margin-bottom:20px;}
.subtitle{margin-top:15px;font-weight:bold;font-size:24px;}
</style>
</head>
<body>
<canvas id="c"></canvas>
<div class="container">
<h1><strong>Hacked By Turk Hack Team</strong></h1>
<img src="https://i.hizliresim.com/W7GZ5L.png" alt="Logo" width="400" />
<div class="subtitle">Hacked By Ensar Kara</div>
</div>
<script>
alert("Hacked By Turk Hack Team");
const c = document.getElementById("c"),
ctx = c.getContext("2d");
let w, h;
function r() {
w = c.width = window.innerWidth;
h = c.height = window.innerHeight;
}
r();
const chars = "アカサタナハマヤラワ0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ".split(""),
size = 14,
cols = Math.floor(w / size);
let drops = Array(cols).fill(1);
function d() {
ctx.fillStyle = "rgba(0,0,0,0.05)";
ctx.fillRect(0, 0, w, h);
ctx.fillStyle = "#0F0";
ctx.font = size + "px monospace";
for(let i = 0; i < drops.length; i++) {
let txt = chars[Math.floor(Math.random() * chars.length)];
ctx.fillText(txt, i * size, drops[i] * size);
if(drops[i] * size > h && Math.random() > 0.975) drops[i] = 0;
drops[i]++;
}
}
setInterval(d, 33);
window.addEventListener("resize", r);
</script>
</body>
</html>

