Skip to content

Instantly share code, notes, and snippets.

@vpodk
Created April 27, 2020 02:23
Show Gist options
  • Save vpodk/e9c56c69165e995daece22ed12ae7d2f to your computer and use it in GitHub Desktop.
Save vpodk/e9c56c69165e995daece22ed12ae7d2f to your computer and use it in GitHub Desktop.
Clean Application - Hamburger Menu
<header>
<h1>Header</h1>
<nav id="nav">
<input type="checkbox" aria-label="Toggle menu">
<div class="hamburger"><span></span></div>
<ul class="menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html">About</a></li>
<li><a href="./index.html">Contact</a></li>
</ul>
</nav>
</header>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment