Skip to content

Instantly share code, notes, and snippets.

@qzm
Created April 27, 2016 09:02
Show Gist options
  • Save qzm/a21f5cac96fbdc33dc9fa320b706edfe to your computer and use it in GitHub Desktop.
Save qzm/a21f5cac96fbdc33dc9fa320b706edfe to your computer and use it in GitHub Desktop.
Horizontal Navigation Bar
<!DOCTYPE html>
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #4CAF50;
}
</style>
</head>
<body>
<ul>
<li>
<a class="active" href="#home">Home</a>
</li>
<li>
<a href="#news">News</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="#about">About</a>
</li>
</ul>
</body>
</html>
@qzm
Copy link
Author

qzm commented Apr 27, 2016

2016-04-27 17 00 46

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment