Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>HOVER ME</title>
- <style type="text/css">
- button {
- width: 200px;
- height: 50px;
- font-size: 24px;
- background-color: green;
- }
- button:hover {
- background-color: orange;
- }
- </style>
- </head>
- <body>
- <button>CLICK ME!</button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment