anasazhar

hover

Nov 12th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>HOVER ME</title>
  5. <style type="text/css">
  6. button {
  7. width: 200px;
  8. height: 50px;
  9. font-size: 24px;
  10. background-color: green;
  11. }
  12.  
  13. button:hover {
  14. background-color: orange;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <button>CLICK ME!</button>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment