Skip to content

Instantly share code, notes, and snippets.

@SohamG
Created December 20, 2014 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SohamG/b09e0b5a034531dbcf73 to your computer and use it in GitHub Desktop.
Save SohamG/b09e0b5a034531dbcf73 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<ul id = '#nav'>
<li><a href="#">Home</a></li>
<li><a href="#">Content</a></li>
<li><a href="#">About</a></li>
</ul>
</body>
</html>
//CSS
ul #nav{
list-style: none;
}
ul #nav li{
display: inline;
}
ul #nav a{
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment