Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tommymarshall/c6c4aef1f6ddac7fa6a4 to your computer and use it in GitHub Desktop.
Save tommymarshall/c6c4aef1f6ddac7fa6a4 to your computer and use it in GitHub Desktop.
Basic menu.
<header>
<nav>
<ul>
<li>
<div>
<h3>Heading</h3>
<ul>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
</ul>
</div>
</li>
<li>
<div>
<h3>Another Heading</h3>
<ul>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
</ul>
</div>
</li>
<li>
<div>
<h3>And Another</h3>
<ul>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</header>
@tommymarshall
Copy link
Author

Assumptions

  • The markup cannot change.
  • The third column has slightly different styling.
  • The same links appear in the footer of the page with slightly different styling.

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