Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>CSS Links</title>
  5. <style type="text/css">
  6. a:link, a:visited {
  7. background-color: blue;
  8. color: white;
  9. padding: 14px 25px;
  10. text-align: center;
  11. text-decoration: none;
  12. display: inline-block;
  13. }
  14.  
  15. a:hover, a:active {
  16. background-color: red;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <a class="1" href="https://www.google.com" alt="Google">KLIK SAYA </a><br />
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement