HTML/CSSBeginner#html#elements

What is the difference between <ul>, <ol>, and <dl>?

<ul> is an unordered (bulleted) list for items with no inherent sequence. <ol> is an ordered (numbered) list for sequential steps. <dl> is a description list pairing terms (<dt>) with descriptions (<dd>), useful for glossaries or key-value data.

Example
<ol>
  <li>Preheat oven</li>
  <li>Mix ingredients</li>
</ol>
<dl>
  <dt>HTML</dt><dd>HyperText Markup Language</dd>
</dl>

Related Questions

1
HTML/CSSAdvanced#css#media-queries

How do you make a webpage print-friendly using CSS?

Open
2
HTML/CSSIntermediate#css#media

What is the CSS 'object-fit' property used for?

Open
3
HTML/CSSBeginner#html#entities

What is the difference between HTML entities and Unicode characters?

Open