Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <style>
- .epic {
- color: #0000ff;
- }
- .button {
- border: none;
- color: red;
- display: inline-box;
- padding: 40px;
- background-color: rgb(250, 250, 250);
- }
- .button:hover:before {
- content: "CLICK ME PLEASE IM BEGGING YOU im in AGONY";
- }
- .button:hover span {
- display: none;
- }
- .button:hover {
- background-color: rgb(150, 150, 150);
- color: white;
- border: 10px solid red;
- padding: 100px;
- }
- </style>
- <head>
- <h1 class="epic">this button can only be clicked by epic gamers</h1>
- </head>
- <body>
- <button class="button" onclick="location.href='https://www.youtube.com/watch?v=dQw4w9WgXcQ'"><span>click me gamar</span></button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement