Advertisement
9551

super rickroll button.HTML

Jul 29th, 2021 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. <html>
  2.     <style>
  3.         .epic {
  4.             color: #0000ff;
  5.         }
  6.         .button {
  7.             border: none;
  8.             color: red;
  9.             display: inline-box;
  10.             padding: 40px;
  11.             background-color: rgb(250, 250, 250);
  12.         }
  13.  
  14.         .button:hover:before {
  15.             content: "CLICK ME PLEASE IM BEGGING YOU im in AGONY";
  16.         }
  17.  
  18.         .button:hover span {
  19.             display: none;
  20.         }
  21.  
  22.         .button:hover {
  23.             background-color: rgb(150, 150, 150);
  24.             color: white;
  25.             border: 10px solid red;
  26.             padding: 100px;
  27.         }
  28.     </style>
  29.     <head>
  30.         <h1 class="epic">this button can only be clicked by epic gamers</h1>
  31.     </head>
  32.     <body>
  33.         <button class="button" onclick="location.href='https://www.youtube.com/watch?v=dQw4w9WgXcQ'"><span>click me gamar</span></button>
  34.     </body>
  35. </html>
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement