Skip to content

Instantly share code, notes, and snippets.

@JamesVanWaza
Last active August 29, 2015 14:01
Show Gist options
  • Save JamesVanWaza/12c5417daaf3092c2fa9 to your computer and use it in GitHub Desktop.
Save JamesVanWaza/12c5417daaf3092c2fa9 to your computer and use it in GitHub Desktop.
Second Revision of Navigation
nav{
list-style-type:none;
font-size: 26px;
font-family: Arial;
}
nav a{
color: #C25;
text-decoration:none;
background-color:#D36;
}
nav a:hover{
color: #654;
text-decoration: underline;
background-color:#98bf21;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<nav>
<a href="#">About Us</a>
<a href="#">Our Products</a>
<a href="#">FAQs</a>
<a href="#">Contact</a>
<a href="#">Login</a>
</nav>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment