Skip to content

Instantly share code, notes, and snippets.

@kidino
Created August 25, 2017 12:55
Show Gist options
  • Save kidino/16b5875f8cd1f7590d5911b8d5b0525d to your computer and use it in GitHub Desktop.
Save kidino/16b5875f8cd1f7590d5911b8d5b0525d to your computer and use it in GitHub Desktop.
Suspended Website Template
<!--
_____ __ __ _____ ____ ___ ____ ___ ___ ___
/ ___/| | |/ ___/| \ / _]| \ | \ / _]| \
( \_ | | ( \_ | o ) [_ | _ || \ / [_ | \
\__ || | |\__ || _/ _]| | || D || _]| D |
/ \ || : |/ \ || | | [_ | | || || [_ | |
\ || |\ || | | || | || || || |
\___| \__,_| \___||__| |_____||__|__||_____||_____||_____|
Terima kasih kerana "view-source" laman web.
Sebenarnya laman web ini sedang digantung perkhidmatannya atas
sebab-sebab tertentu. Sekiranya ini laman web anda, sila berhubung
dengan pihak yang sewajarnya untuk meneruskan perkhidmatan laman
web ini.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WEBSITE SUSPENDED!</title>
<style>
body { background-color: #ccc; }
p {
font-size: 250px; color: #ccc; margin: auto; text-align: center;
width: 300px; height: 300px; border-radius: 170px; line-height: 300px;
border: 20px solid #ddd; margin-top: 100px; font-weight: bold;
}
.glow {
-webkit-animation-duration: 3s;
-webkit-animation-name: glow;
-webkit-animation-direction: alternate;
-webkit-animation-iteration-count: infinite;
animation-duration: 3s;
animation-name: glow;
animation-direction: alternate;
animation-iteration-count: infinite;
}
@-webkit-keyframes glow {
from { text-shadow: 0 0 0px #ccc; }
to { text-shadow: 0 0 30px #444; }
}
</style>
</head>
<body>
<p class="glow">?</p>
</body>
</html>
<script>
function msg() {
console.log("%cSUSPENDED!%c\nSayangnya laman web ini sedang digantung perkhidmatannya.\nSekiranya ini laman web anda, dan anda mahukan laman web\nini dihidupkan semula, sila berhubung dengan pihak yang sewajarnya.", 'text-shadow: 2px 0 0 #444, -2px 0 0 #444, 0 2px 0 #444, 0 -2px 0 #444, 1px 1px #444, -1px -1px 0 #444, 1px -1px 0 #444, -1px 1px 0 #444;; font-size: 80px;color: red;','font-family:arial;font-size:15px; color: #555;');
}
msg();
setInterval(function() { msg(); }, 10000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment