Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=windows-1252">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  7. <style>
  8. .navbar {
  9. overflow: hidden;
  10. background-color: #2F4F4F;
  11. font-family: Arial, Helvetica, sans-serif;
  12. }
  13.  
  14. .navbar a {
  15. float: left;
  16. font-size: 16px;
  17. color: white;
  18. text-align: center;
  19. padding: 14px 16px;
  20. text-decoration: none;
  21. }
  22.  
  23. .dropdown {
  24. float: left;
  25. overflow: hidden;
  26. }
  27.  
  28. .dropdown .dropbtn {
  29. font-size: 16px;
  30. border: none;
  31. outline: none;
  32. color: white;
  33. padding: 14px 16px;
  34. background-color: inherit;
  35. font-family: inherit;
  36. margin: 0;
  37. }
  38.  
  39. .navbar a:hover, .dropdown:hover .dropbtn {
  40. background-color: black;
  41. }
  42.  
  43.  
  44.  
  45. .dropdown-content {
  46. display: none;
  47. position: absolute;
  48. background-color: #D3D3D3;
  49. min-width: 160px;
  50. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  51. z-index: 1;
  52. }
  53.  
  54. .dropdown-content a {
  55. float: none;
  56. color: black;
  57. padding: 12px 16px;
  58. text-decoration: none;
  59. display: block;
  60. text-align: left;
  61. }
  62.  
  63. .dropdown-content a:hover {
  64. background-color: #A9A9A9;
  65. }
  66.  
  67. .dropdown:hover .dropdown-content {
  68. display: block;
  69.  
  70. }
  71.  
  72. .active {
  73. overflow: hidden;
  74. background-color: green;
  75. font-family: Arial, Helvetica, sans-serif;
  76. }
  77.  
  78. .active a {
  79. float: left;
  80. font-size: 16px;
  81. color: white;
  82. text-align: center;
  83. padding: 14px 16px;
  84. text-decoration: none;
  85. }
  86. .active:hover {
  87.  
  88. background-color: #006400;
  89. }
  90.  
  91.  
  92.  
  93.  
  94. </style>
  95. </head>
  96. <body>
  97. <div class="active"><a href="#home">Home</a>
  98.  
  99.  
  100. <div class="navbar"><a href="#home">Shop</a>
  101. <a href="#news">Forum</a>
  102. <a href="#news">YouTube</a>
  103. <a href="#news">Discord</a>
  104. <div class="dropdown"> <button class="dropbtn">History <i class="fa fa-caret-down"></i>
  105. </button>
  106. <div class="dropdown-content">
  107. <a href="#">Bans</a>
  108. <a href="#">Mutes</a>
  109. <a href="#">Warns</a>
  110. </div>
  111.  
  112. </div>
  113. </div>
  114. </div>
  115. <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  116. <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
  117. <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br
  118. </body>
  119. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement