HTML List Item Tag
List items are the building blocks of lists. The <li> tag defines one item and must sit inside <ul> or <ol>.
Block-Level Element
<ul> creates bullet lists; <ol> creates numbered lists. Each <li> is one item. Always close with </li>.
Opening and Closing
Always close each list item with </li>. Valid HTML and accessibility depend on proper list structure.
Accessibility
Screen readers announce βlist of N itemsβ when they find <ul>/<ol> and <li>. Use lists for real list content, not for layout.
