-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
13 lines (11 loc) · 840 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
<button onclick="nice()">CLICK HERE FOR A FREE DISCORD NITRO</button>
<script>
let beat = new Audio('rick.mp3');
function playAudio() {
beat.play();
}
function nice() {
document.write("<div style='display: flex; align-items: center; justify-content: center; height: 100vh;'><div style='background-color: #fff; padding: 20px;'><h1 style='text-align: center;'>You have been rick rolled!</h1><img class='J9AiF' src='https://64.media.tumblr.com/tumblr_m971zpBbAF1rbgzizo1_500.gifv' alt='Tumblr: Image' style='transform: rotate(45deg); animation: rotate-animation 10s infinite linear;'></div></div><audio id='nice'><source src='./rick.mp3' type='audio/mp3'></audio><style>@keyframes rotate-animation {0% {transform: rotate(0deg);}50% {transform: rotate(180deg);}100% {transform: rotate(360deg);}}</style>");
playAudio();
}
</script>