'Lists'
Lists ar prety simple, you can have bullited lists or numbered lists
(These are also known as 'Unordered' and 'Ordered'), like this:
- First point
- Second point
- Third point
OR
- First point
- Second point
- Third point
The Code I typed for this is as follows:
<ul>
<li>First point</li>
<li>Second point</li>
<li>Third point</li>
</ul><p>
OR
<ol>
<li>First point</li>
<li>Second point</li>
<li>Third point</li>
</ol><p>
|