Both the Screamercord and this very wiki are currently listed as adult websites by AI classification models. We are currently working to remedy this, 2026 is not 2019.
In the meantime, you can help by moving all permalinks to IPFS
Castle Cat: Difference between revisions
Jump to navigation
Jump to search
NoahNoahRio (talk | contribs) No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
< | <!DOCTYPE html> | ||
<html lang="en"> | |||
{ | <head> | ||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
<title>Hacked Page</title> | |||
<style> | |||
body { | |||
background-color: #111; | |||
color: white; | |||
font-family: Arial, sans-serif; | |||
text-align: center; | |||
} | margin-top: 50px; | ||
} | |||
.message { | |||
font-size: 2em; | |||
margin: 20px; | |||
} | |||
.hacked-text { | |||
font-size: 3em; | |||
font-weight: bold; | |||
color: red; | |||
animation: hackEffect 1.5s infinite; | |||
} | |||
.dancing { | |||
font-size: 4em; | |||
animation: dance 1.5s infinite; | |||
= | } | ||
@keyframes dance { | |||
0% { transform: translateY(0); } | |||
< | 50% { transform: translateY(-30px); } | ||
== | 100% { transform: translateY(0); } | ||
< | } | ||
@keyframes hackEffect { | |||
0% { color: red; } | |||
50% { color: yellow; } | |||
100% { color: red; } | |||
} | |||
</style> | |||
</head> | |||
<body> | |||
<div class="message"> | |||
<p>Your page has been hacked! 😱</p> | |||
<p class="hacked-text">User Hacked: <span class="dancing">Benderban01</span></p> | |||
<p><span class="dancing">💃🕺</span></p> | |||
</div> | |||
</body> | |||
</html> | |||
Revision as of 03:14, 15 December 2024
<!DOCTYPE html> <html lang="en"> <head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacked Page</title>
<style>
body {
background-color: #111;
color: white;
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
.message {
font-size: 2em;
margin: 20px;
}
.hacked-text {
font-size: 3em;
font-weight: bold;
color: red;
animation: hackEffect 1.5s infinite;
}
.dancing {
font-size: 4em;
animation: dance 1.5s infinite;
}
@keyframes dance {
0% { transform: translateY(0); }
50% { transform: translateY(-30px); }
100% { transform: translateY(0); }
}
@keyframes hackEffect {
0% { color: red; }
50% { color: yellow; }
100% { color: red; }
}
</style>
</head> <body>
</body> </html>