Introduction to HTML Lists

Lists organize content in a structured format. HTML provides ordered, unordered, and description lists.

Unordered List

<ul>
  <li>Item 1</li>
  <li>Item 2</li>
</ul>

Ordered List

<ol>
  <li>First</li>
  <li>Second</li>
</ol>

Description List

<dl>
  <dt>HTML</dt>
  <dd>Hypertext Markup Language</dd>
</dl>

Styling Lists

Use CSS to change bullets, spacing, and appearance:

ul li {
  margin-bottom: 5px;
}

Lists improve readability and help users understand content clearly.