HTML — Lists
Lists help organize items. There are two types:
- Ordered list
<ol>→ numbered - Unordered list
<ul>→ bullet points
<ol>
<li>First</li>
<li>Second</li>
</ol>
<ul>
<li>Apples</li>
<li>Bananas</li>
</ul>Lists help organize items. There are two types:
<ol> → numbered<ul> → bullet points<ol>
<li>First</li>
<li>Second</li>
</ol>
<ul>
<li>Apples</li>
<li>Bananas</li>
</ul>