Advertisement
Guest User

dddd

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