Skip to content

Instantly share code, notes, and snippets.

@halfnibble
Created April 24, 2019 17:40
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 halfnibble/02534627f5db6973ac125d7fa24d1041 to your computer and use it in GitHub Desktop.
Save halfnibble/02534627f5db6973ac125d7fa24d1041 to your computer and use it in GitHub Desktop.
Menu HTML responsive nav
<body>
<nav>
<ul class="closed">
<li id="mobile-menu" class="mobile-only">
<a href="#">
<div id="hamburger"></div>
MENU
</a>
</li>
<li>
<a href="#">
Home
</a>
</li>
<li class="submenu-parent">
<a href="#" class="submenu-link">
Products
</a>
<ul class="submenu">
<li>
<a href="#">
Hats
</a>
</li>
<li>
<a href="#">
Gloves
</a>
</li>
<li>
<a href="#">
Shoes
</a>
</li>
<li>
<a href="#">
Pumpkins
</a>
</li>
</ul>
</li>
<li>
<a href="#">
Contact Us
</a>
</li>
</ul>
</nav>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment