Advertisement
Guest User

linkStyles

a guest
Dec 9th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.52 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3.  
  4. <html>
  5.  
  6. <head>
  7.  
  8. <style>
  9.  
  10.     a.menu, a.menu:visited {
  11.         font-family: helvetica, arial;
  12.         font-size: 10px;
  13.         color:white;
  14.         text-shadow:0px 0px 5px black;
  15.         text-decoration: none;
  16.         padding:15px;
  17.     }
  18.  
  19.     a.menu:hover {
  20.         background-color: rgba(0,0,0,0.7);
  21.         padding:15px;
  22.         text-shadow: none;
  23.         text-decoration: none;
  24.         border-radius: 8px;
  25.     }
  26.  
  27. </style>
  28.  
  29. </head>
  30.  
  31. <body>
  32.  
  33. <br><br>
  34.  
  35.  
  36. <a href="#" class="menu">FORSIDE</a>
  37.  
  38. <a href="#" class="menu">UNDERSIDE</a>
  39.  
  40.  
  41. </body>
  42.  
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement