Skip to content

Instantly share code, notes, and snippets.

@JamesVanWaza
Last active August 29, 2015 14:01
Show Gist options
  • Save JamesVanWaza/c4f29bede8de8eb99ad8 to your computer and use it in GitHub Desktop.
Save JamesVanWaza/c4f29bede8de8eb99ad8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<nav>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Our Products</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
</body>
</html>
nav{
}
nav ul{
}
nav ul li{
list-style-type:none;
font-size: 26px;
font-family: Arial;
}
nav ul li a{
color: #C25;
text-decoration:none;
background-color:#D36;
}
nav ul li a:hover{
color: #654;
text-decoration: underline;
background-color:#98bf21;
}
@JamesVanWaza
Copy link
Author

This is just trying to mess around with navigation. Changing the default navigation

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