Advertisement
Guest User

ddd

a guest
Jan 16th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset = "utf-8">
  5. <title> Vertikalna navigacijska traka </title>
  6. <style>
  7.     ul.nav-traka {list-style-type:none;
  8.                     padding-left:0px;
  9.                     margin-left: 0px;
  10.                     }
  11.     ul.nav-traka a { display:block;}
  12.    
  13.     ul.nav-traka a:link, a:visited {
  14.                     width:120px;
  15.                     font-weight:bold;
  16.                     text.align: center;
  17.                     color: #ffffff;
  18.                     background-color: #B22222;
  19.                     text-transform:uppercase;
  20.                     text-decoration: none;
  21.                     padding: 4px;
  22.                     border: 1px solid #ffffff;
  23.                     }
  24.     ul.nav-traka a:hover, a:active {
  25.                     background-color: #ff6347;
  26.                     text-decoration: underline;
  27.                     }
  28.     a.obicni:link, a.obicni:visited {
  29.                     color: #b22222;
  30.                     text-decoration: none;
  31.                     }
  32.     a.obicni:hover, a.obicni:active {
  33.                     color: #ff6347;
  34.                     text-decoration: underline;
  35.                     }
  36. </style>
  37. </head>
  38. <body>
  39.  <ul class="nav-traka">
  40.     <li> <a href="http://www.pmfst.unist.hr"> PMFST </a> </li>
  41.     <li> <a href="http://moodle.pmfst.unist.hr"> Moodle </a> </li>
  42.     <li> <a href="http://www.google.hr"> Google </a> </li>
  43. </ul>
  44.  
  45. <p>
  46. Studiram na <a href="http://www.pmfst.unist.hr" class= "obicni"> PMFu </a> u Splitu.
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement