---
id: html-lists
title: "HTML Lists"
category: "Frontend"
status: "draft"
verification_status: "conceptual"
canonical_id: ""
aliases: ["HTML list", "unordered list", "ordered list", "description list", "ul ol li"]
duplicate_of: ""
source_trust_level: "B"
confidence_score: 0.90
created_at: 2026-06-23
updated_at: 2026-06-23
review_reason: ""
merge_history: []
tags: ["html", "web", "frontend", "w3schools", "lists"]
raw_sources: ["https://www.w3schools.com/html/html_lists.asp"]
applied_in: []
github_commit: ""
---
# [[HTML Lists]]
## ๐ฏ ํ ์ค ํต์ฐฐ (One-line insight)
HTML lists group related items as unordered (bulleted) lists, ordered (numbered) lists, or description lists that pair terms with their descriptions. [S1]
## ๐ง ํต์ฌ ๊ฐ๋
(Core concepts)
- **Unordered list (`
`)** โ a list of items where order does not matter; items show with bullet markers by default. Each item is an `- `. [S1]
- **Ordered list (`
`)** โ a list where order matters; items show numbered by default. Each item is an `- `. [S1]
- **List item (`
- `)** โ the element used for each item inside both `
` and ``. [S1]
- **Description list (``)** โ a list of terms with a description of each term, using `- ` for the term and `
- ` for its description. [S1]
## ๐งฉ ์ถ์ถ๋ ํจํด (Extracted patterns)
- **Container + item pattern** โ both unordered and ordered lists wrap a series of `
- ` items in a single list container (`
` or ``). [S1]
- **Term/description pairing pattern** โ a description list alternates `- ` (term) and `
- ` (description) pairs inside `
`. [S1]
## ๐ ์ธ๋ถ ๋ด์ฉ (Details)
**Unordered HTML List.** An unordered list starts with the `` tag. Each list item starts with the `- ` tag. The list items will be marked with bullets (small black circles) by default. [S1]
```html
```
**Ordered HTML List.** An ordered list starts with the `
` tag. Each list item starts with the `- ` tag. The list items will be marked with numbers by default. [S1]
```html
- Coffee
- Tea
- Milk
```
**HTML Description Lists.** HTML also supports description lists. A description list is a list of terms, with a description of each term. The `` tag defines the description list, the `- ` tag defines the term (name), and the `
- ` tag describes each term. [S1]
```html
- Coffee
- - black hot drink
- Milk
- - white cold drink
```
**HTML List Tags.** [S1]
| Tag | Description |
|---|---|
| `` | Defines an unordered list |
| `` | Defines an ordered list |
| `- ` | Defines a list item |
| `
` | Defines a description list |
| `- ` | Defines a term in a description list |
| `
- ` | Describes the term in a description list |
## ๐ ๏ธ ์ ์ฉ ์ฌ๋ก (Applied in summary)
The "Coffee / Tea / Milk" examples above are the canonical applied examples of each list type. No external project/commit applications found in the source.
## ๐ป ์ฝ๋ ํจํด (Code patterns)
Unordered list (HTML):
```html
```
Ordered list (HTML):
```html
- Item
```
Description list (HTML):
```html
- Term
- Description
```
## โ๏ธ ๋น๊ต ๋ฐ ์ ํ ๊ธฐ์ค (Comparison & decision criteria)
- **Use ``** when the order of items does not matter (rendered with bullets). [S1]
- **Use ``** when order matters (rendered with numbers). [S1]
- **Use ``** when each item is a term paired with a description. [S1]
## โ๏ธ ๋ชจ์ ๋ฐ ์
๋ฐ์ดํธ (Contradictions & updates)
No contradictions found in the source. [S1]
## โ
๊ฒ์ฆ ์ํ ๋ฐ ์ ๋ขฐ๋
- **์ํ:** draft
- **๊ฒ์ฆ ๋จ๊ณ:** conceptual (์ค์ ์ ์ฉ ์ฌ๋ก ๋ฐ๊ฒฌ ์ applied/validated๋ก ์น๊ฒฉ ๊ฐ๋ฅ)
- **์ถ์ฒ ์ ๋ขฐ๋:** B (W3Schools โ widely used educational reference, not a primary standards body)
- **์ ๋ขฐ ์ ์:** 0.90
- **์ค๋ณต ๊ฒ์ฌ ๊ฒฐ๊ณผ:** ์ ๊ท ์์ฑ (New discovery)
## ๐ ์ง์ ๊ทธ๋ํ (Knowledge Graph)
- **์์/๋ฃจํธ:** [[HTML Tutorial]]
- **๊ด๋ จ ๊ฐ๋
:** [[HTML Tables]], [[HTML Block and Inline]], [[HTML Div]], [[HTML Elements]]
- **์ฐธ์กฐ ๋งฅ๋ฝ:** Referenced whenever a sequence or grouping of related items must be displayed on a web page.
## ๐ ์ถ์ฒ (Sources)
- [S1] W3Schools โ HTML Lists โ https://www.w3schools.com/html/html_lists.asp
## ๐ ๋ณ๊ฒฝ ์ด๋ ฅ (Change history)
- 2026-06-23: Initial draft synthesized from the W3Schools "HTML Lists" page (Astra wiki-curation, P-Reinforce v3.1 format).