HTML li Tag

Example

One ordered (<ol>) and one unordered (<ul>) HTML list:
<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>

Teach Yourself  by BH24 HTML Editor Tool!

The <li> tag is supported in all major browsers.

Definition and Usage

The <li> tag defines a list item.
The <li> tag is used in ordered lists(<ol>), unordered lists (<ul>), and in menu lists (<menu>).