Skip to content

Instantly share code, notes, and snippets.

@lancewillett
Created September 21, 2012 17:10
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 lancewillett/3762698 to your computer and use it in GitHub Desktop.
Save lancewillett/3762698 to your computer and use it in GitHub Desktop.
List markup example
<ul>
<li>Top List 1</li>
<li>Top List 2, with children
<ul>
<li>Second level, child of Top List 2</li>
<li>And another list item</li>
<li>And a third list item, with children
<ul>
<li>I'm a third-level list item</li>
</ul><!-- Closing third level child list -->
</li>
</ul><!-- Closing second level child list -->
</li><!-- Closing the list item after closing the ul tag of the child list -->
<li>Top List 3</li>
</ul><!-- Closing the top parent tag -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment