Let’s do some lists
HTML List Style Code :
<ul>
<li>Parent
<ul>
<li>Child</li>
<li>Child</li>
</li>
</ul>
</ul>
- Parent
- Child
- Child
- Parent
- Parent
Bullet ed List Style Code :
<ol>
<li>Parent
<ol>
<li>Child</li>
<li>Child</li>
</ol>
</ol>
- Parent
- Child
- Child
- Parent
- Parent
- Parent
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.
