Advertisement
here2share

HTML link inline-block

Aug 16th, 2016
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a:link, a:visited {
  6.     background-color: red;
  7.     color: white;
  8.     padding: 14px 25px;
  9.     text-align: center;
  10.     text-decoration: none;
  11.     display: inline-block;
  12. }
  13.  
  14.  
  15. a:hover, a:active {
  16.     background-color: green;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21.  
  22. <a href="google.com" target="_blank">This is a link</a>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement