Untitled
2 hours ago in Plain Text
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>System Breach</title>
<style>
body {
background: #000;
color: #00ff00;
font-family: monospace;
padding: 20px;
font-size: 26px;
}
.blink {
animation: blink 0.8s infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
</style>
</head>
<body>
<div class="blink">تم الاختراق… أنت الآن مراقب 😱</div>
<br><br>
<small style="color:#0f0;">(مزحة فقط 😂)</small>
</body>
</html>