Skip to content

Instantly share code, notes, and snippets.

@mattmawhinney
Created July 10, 2013 18:31
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 mattmawhinney/5968849 to your computer and use it in GitHub Desktop.
Save mattmawhinney/5968849 to your computer and use it in GitHub Desktop.
HTML for navbar with a drop down menu built in
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="navbarwdropdown.css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type='text/javascript' src='script.js'></script>
</head>
<body>
<div id="header">
<ul id="nav">
<a href="http://www.mattmawhinney.com"><li>Home</li></a>
<a href="https://www.linkedin.com/pub/matt-mawhinney/1a/238/176/" target="blank"><li>LinkedIn</li></a>
<a href="https://github.com/mattmawhinney/Practice" target="blank"><li>GitHub</li></a>
<a href="mailto:matt.mawhinney@gmail.com" target="blank"><li>Email</li></a>
<a href="https://www.twitter.com/TweetsbyMatt" target="blank"><li>@TweetsbyMatt</li></a>
<li id="blogs">Blogs
<ul>
<a href="http://devetc.tumblr.com/" target="blank"><li>DevEtc</li></a>
<a href="http://mattmawhinney.newsblur.com/" target="blank"><li>BlurBlog</li></a>
<a href="http://febfourhundo.blogspot.com/" target="blank"><li>FebFourHundo</li></a>
</ul>
</li>
</ul>
</div>
<!-- MORE BODY HTML-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment