Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>CSS LINK</title>
  5.     <style>
  6.         a:link, a:visited {
  7.             background-color: #36e4f4;
  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.     <h2>Link Button</h2>
  22.     <p>a link styled as a button: </p>
  23.     <a href="https://www.w3schools.com/css/css_link.asp" target="_blank">This is a link </a>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement