Advertisement
Guest User

Kurc

a guest
May 20th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body{background-color:#grey;}
  6.  
  7. #meni{background:#008000; }
  8.  
  9. .meni{background:#008000;
  10. margin:0px ;
  11. height : 50px ;
  12. overflow:hidden;}
  13.  
  14. .meni li{float:left;
  15. height : 50px}
  16.  
  17.  
  18. .meni li a{font-size:30px;
  19. color:white;
  20. text-decoration:none;
  21. margin:30px;}
  22. #vert-nav {float:left;
  23. background:#008000;
  24. height:800;
  25. margin-top:10px;
  26.  
  27. }
  28. #vert-nav ul{background:#008000;
  29. margin:10px;
  30. width: 150px; }
  31. #vert-nav ul li{list-style-type:none;
  32. background-color:#008000;
  33. margin-left:-20px ;}
  34.  
  35.  
  36. #vert-nav ul li a{font-size : 30px ;
  37. text-decoration : none;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <ul class = "meni ">
  43. <li><a href ="#" >home</a></li>
  44. <li><a href ="#" >home</a></li>
  45. <li><a href ="#" >home</a>
  46. <li><a href ="#" >home</a></li>
  47. </ul>
  48.  
  49.  
  50. <div id ="vert-nav">
  51.  
  52. <ul>
  53.  
  54. <li><a href ="#">Navigacija</a></li>
  55. <li><a href ="#">Navigacija</a></li>
  56. <li><a href ="#">Navigacija</a></li>
  57. <li><a href ="#">Navigacija</a></li>
  58.  
  59.  
  60. </ul>
  61.  
  62. </div>
  63.  
  64. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement