
HTML Lists - W3Schools
HTML Description Lists HTML also supports description lists. A description list is a list of terms, with a description of each term. The <dl> tag defines the description list, the <dt> tag defines the term …
HTML dl tag - W3Schools
Definition and Usage The <dl> tag defines a description list. The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).
HTML Description List (With Examples) - Programiz
Learn about HTML description lists and how to create them with examples in this comprehensive tutorial.
HTML Lists - GeeksforGeeks
Jan 20, 2026 · Description lists are less common but very useful for definitions, glossaries, or any other key-value pairs of items. The <dl> tag defines the description list, the <dt> tag defines the term …
HTML Lists- Ordered, Unordered, and Description Lists Tutorial
Learn about HTML lists, including unordered, ordered, and description lists, and how to define them using different tags.
<dl>: The Description List element - HTML | MDN - MDN Web Docs
Jul 9, 2025 · The <dl> HTML element represents a description list, enclosing groups of terms and descriptions, commonly used for glossaries or metadata.
Define terms with HTML - MDN
Jul 9, 2025 · Define terms with HTML HTML provides several ways to convey description semantics, whether inline or as structured glossaries. In this article, we'll cover how to properly mark up …
HTML Lists (With Examples) - Programiz
The HTML description list is used to represent data in the name-value form. We use the <dl> tag to create a definition list and each item of the description list has two elements:
Lists - web.dev
Dec 8, 2022 · When creating a list of terms and their definitions or descriptions, or similar lists of key-value pairs, the description lists elements provide the appropriate semantics.
Creating Lists - Learn to Code HTML & CSS - Shay Howe
Recipes provide lists of ingredients and lists of instructions. With a list for nearly everything, it’s easy to understand why they are also popular online. When we want to use a list on a website, HTML …