Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <style>
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- overflow: hidden;
- background: black;
- }
- li {
- float: left;
- }
- li a {
- display: block;
- color: white;
- text-align: center;
- padding: 14px 16px;
- text-decoration: none;
- }
- li a:hover {
- background: green;
- }
- </style>
- </head>
- <body>
- <h2>Horizontal Navigation Bar</h2>
- <ul>
- <li><a href="#home">Home</a></li>
- <li><a href="#news">News</a></li>
- <li><a href="#contact">Concact</a></li>
- <li><a href="#about us">About Us</a></li>
- </ul>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment