Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Menu</title>
  4. <style text="text/css">
  5. .menu_vertical {
  6. margin-left: -40;
  7. padding: 0;
  8. float: left;
  9. }
  10.  
  11. .menu_vertical ul li {
  12. width:250px;
  13. list-style: none;
  14. }
  15.  
  16. .menu_vertical ul li a{
  17. Background-color:#F2F2F2;
  18. color:black;
  19. display:block;
  20. padding:12px;
  21. text-decoration:none;
  22.  
  23. .menu_vertical ul li a:hover {
  24. background-color: #F2F2F2;
  25. }
  26.  
  27. .menu_vertical ul li a:active {
  28. background-color: #A4A4A4;
  29. color:Black;
  30. }
  31.  
  32. .menu_vertical ul li ul{
  33. Display:none;
  34. }
  35.  
  36. .menu_vertical ul li:hover ul{
  37. Display:block;
  38. }
  39.  
  40. </style>
  41. </head>
  42. <body style="background-size: cover" background="background.jpg" alink="white" vlink="white">
  43. <div class="menu_vertical">
  44. <ul>
  45. <li><a href="logo.html" target="frame1" class="active">Home</li></a>
  46. <li><a href="tigre.html" target="frame1">Tigre</a>
  47. <ul>
  48. <li><a href="alimento.html" target= "frame1">Alimento</a></li>
  49. </li>
  50. </ul>
  51. <li><a href ="Leao.html" target = "frame1">Leao</a></li>
  52. <li><a href ="Tigre.html" target = "frame1">Tigre</a></li>
  53. <li><a href ="Panda.html" target = "frame1">Panda</a></li>
  54. <li><a href ="Koala.html" target = "frame1">Koala</a></li>
  55. </ul>
  56. </div>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement