Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="Stylesheet" type="text/css" href="style.css" />
  4. </head>
  5. <body>
  6.  
  7. <div class="vertical-menu">
  8. <a href="home.html" class="active">Home</a>
  9. <a href="link1.html">Link 1</a>
  10. <a href="link2.html">Link 2</a>
  11. <a href="link3.html">Link 3</a>
  12. <a href="link4.html">Link 4</a>
  13.  
  14. </div>
  15.  
  16.  
  17. </body>
  18. </html>
  19.  
  20. .vertical-menu {
  21. width: 200px;
  22. }
  23.  
  24. .vertical-menu a {
  25. background-color: #00FFFF; /* Grey background color */
  26. color: purple;
  27. display: block;
  28. padding: 24px;
  29. text-decoration: underline;
  30. font-size: large
  31. }
  32.  
  33. .vertical-menu a:hover {
  34. background-color: #ccc; /* Dark grey background on mouse-over */
  35. }
  36.  
  37. .vertical-menu a.active {
  38. background-color: #4CAF50; /* Add a green color to the "active/current" link */
  39. color: white;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement