Liliana797979

Horizontal Navigation Bar

Jun 1st, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.80 KB | None | 0 0
  1.      
  2. <html>
  3. <head>
  4.     <style>
  5.         ul {
  6.             list-style-type: none;
  7.             margin: 0;
  8.             padding: 0;
  9.             overflow: hidden;
  10.             background: black;
  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: green;
  27.         }
  28.     </style>
  29.  
  30. </head>
  31.  
  32. <body>
  33.     <h2>Horizontal Navigation Bar</h2>
  34.     <ul>
  35.         <li><a href="#home">Home</a></li>
  36.         <li><a href="#news">News</a></li>
  37.         <li><a href="#contact">Concact</a></li>
  38.         <li><a href="#about us">About Us</a></li>
  39.     </ul>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment