Skip to content

Instantly share code, notes, and snippets.

@daanyaalkapadia
Created September 30, 2020 06:02
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 daanyaalkapadia/e3b9d69f3e43515f175a1cb8163567b6 to your computer and use it in GitHub Desktop.
Save daanyaalkapadia/e3b9d69f3e43515f175a1cb8163567b6 to your computer and use it in GitHub Desktop.
HTML ordered and unordered list
<!-- Unordered -->
<ul>
<li>ABC</li>
<li>DEF</li>
<li>GHI</li>
<li>JKL</li>
</ul>
<!-- Ordered -->
<ol type="i">
<li>CNN</li>
<li>IBN</li>
<li>Assure</li>
<li>Environ</li>
</ol>
<!-- Nested -->
<ul>
<li>A - Apple</li>
<li>B - Ball</li>
<li>C -
<ul>
<li>Cat</li>
<li>Cow</li>
</ul>
</li>
<li>D - Dog</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment