Create lists

This commit is contained in:
Joe James
2020-02-14 12:31:54 -06:00
committed by GitHub
parent 85461302ce
commit c910105add

12
lists Normal file
View File

@@ -0,0 +1,12 @@
<ul>
<li>This is a bullet list</li>
<li>also called an unordered list</li>
<li>li is for list item</li>
</ul>
<ol>
<li>This is a numbered list</li>
<li>also called an ordered list</li>
<ul>
<li>this is a sublist, just add another list inside a list</li>
</ul>
</ol>