Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title></title>
  6. <link rel="stylesheet" type="text/css" href="style.css"/>
  7. <style type="text/css">
  8. ul, li
  9. {
  10. display: block;
  11. list-style-type: none;
  12. margin: 0;
  13. padding: 0;
  14. }
  15. ul
  16. {
  17. width: 180px;
  18. }
  19. ul a:link, ul a:visited
  20. {
  21. display: block;
  22. width: 168px;
  23. text-decoration: none;
  24. background-color: #c0c0c0;
  25. color: black;
  26. padding: 4px;
  27. border: 2px outset #c0c0c0;
  28. }
  29. ul a:hover
  30. {
  31. border-style: inset;
  32. color: blue;
  33. padding: 6px 3px 3px 6px;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38.  
  39. <ul>
  40. <li><a href="start.html">Start</a></li>
  41. <li><a href="nowe.html">Aktualnosci</a></li>
  42. <li><a href="szkolenia.html">szkolenia</a></li>
  43. <li><a href="uslugi.html">ulugi</a></li>
  44. </ul>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement