CHAPTER 2Lists
Lists use 3 tags:
Ordered Lists
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
</ol>
Unordered lists
<ul>
<li>Apples</li>
<li>Oranges</li>
<li>Kiwis</li>
<li>Pears</li>
</ul>
Both types of lists can have these attributes:
type | The type of the list: 1 , a , A , i , I |
reversed | Shows the list reversed |
start | Sets the index of the first item (for split lists) |