Lists


Lists are a useful tool in HTML. There are three types of lists in HTML, a numbered list, a bulleted list, and a definition list.

Numbered Lists

<ol>
<li>First topic</li>
<li>Second topic</li>
<li>Third topic</li>
</ol>

Bulleted Lists

<ul>
<li>First bullet</li>
<li>Second bullet</li>
<li>Third bullet</li>
</ul>

Definition Lists

<dl>
<dt>First term</dt>
<dd>First definition</dd>

<dt>Second term</dt>
<dd>Second definition</dd>

<dt>Third term</dt>
<dd>Third definition</dd>

</dl>



Real Time Web Analytics