Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. ul {
  6. list-style-type: none;
  7. margin: 0;
  8. padding: 0;
  9. overflow: hidden;
  10. background-color: #333;
  11. }
  12.  
  13. li {
  14. float: left;
  15. }
  16.  
  17. li a {
  18. display: block;
  19. color: white;
  20. text-align: center;
  21. padding: 14px 16px;
  22. text-decoration: none;
  23. }
  24.  
  25. li a:hover {
  26. background-color: #111;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <h1>E-dnevnik</h1>
  32. <ul>
  33. <li><a class="active" href="file:///C:/dh/test2.html">Ucenici</a></li>
  34. <li><a href="#news">Predmeti</a></li>
  35. <li><a href="#contact">Ocene</a></li>
  36. </ul>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement