🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › HTML › Reference › Elements › dl
<dl>: The Description List element - HTML | MDN
The HTML element represents a description list. The element encloses a list of groups of terms (specified using the element) and descriptions (provided by elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).
🌐
W3Schools
w3schools.com › tags › tag_dl.asp
HTML dl tag
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). The <dl> tag also supports the Global Attributes in HTML.
🌐
Programiz
programiz.com › html › description-list
HTML Description List (With Examples)
We use the HTML description list to create a list where list items include terms and descriptions of the term.
🌐
GeeksforGeeks
geeksforgeeks.org › html › explain-description-lists-in-html
Explain Description Lists in HTML - GeeksforGeeks
August 5, 2025 - An HTML description list is a list of terms, with a description of each term. The HTML description list is represented as <dl>. Lists in HTML are used for specifying particular information in list form.
🌐
W3C
w3.org › WAI › WCAG21 › Techniques › html › H40
H40: Using description lists | WAI | W3C
This technique applies to HTML. The objective of this technique is to provide the description of names or terms by presenting them in a description list. The list is marked up using the dl element. Within the list, each term is put in a separate dt element, and its description goes in the dd ...
🌐
Oidaisdes
oidaisdes.org › description-list-html-element.en
How the Description List Element improves Accessibility and the Developer Experience
The description list contains a list of terms and descriptions that are defined with the HTML elements <dt> (description term) and <dd> (description details). Here's an example for a list of metadata: <dl> <dt>Account Owner</dt> <dd>Martina ...
🌐
Javatpoint
javatpoint.com › html-description-list
HTML Description List | HTML Definition List - javatpoint
HTML description list or HTML definition lists with examples, html ordered list, html unordered list, html description list, forms, input, text, anchor, image, heading, marquee, textarea, paragraph, title, quotes, code etc.
🌐
DhiWise
dhiwise.com › post › html-description-lists-explained-everything-you-need-to-know
Mastering HTML Description Lists: A Comprehensive Guide
September 4, 2024 - Unlike unordered lists, which are used for listing items without any particular order, description lists are designed to present a series of terms and their descriptions in a way that is easy to read and understand. Creating an HTML description list is straightforward and involves depicting 'list items' as pairs of 'definition term' and 'definition description'.
🌐
W3Schools
w3schools.com › html › html_lists_other.asp
HTML Other Lists
HTML Examples HTML Editor HTML ... ... HTML also supports description lists. A description list is a list of terms, with a description of each term....
Find elsewhere
🌐
GeeksforGeeks
geeksforgeeks.org › html › html-description-lists
HTML Description Lists - GeeksforGeeks
December 16, 2024 - This allows for organizing related terms and their definitions in a hierarchical structure, as demonstrated in the example: ... <!DOCTYPE html> <html> <head> <title>Nested Description List</title> </head> <body> <h3>Technology Overview</h3> ...
🌐
LabEx
labex.io › tutorials › html-html-description-list-70745
Mastering HTML Description Lists | LabEx
In HTML, there is a special tag called <dl> which is used to define a description list. This type of list is usually created to explain terms and their definitions, or to give a brief explanation of a product or service.
🌐
W3Schools
w3schools.com › html › tryit.asp
A description list
The W3Schools online code editor allows you to edit code and view the result in your browser
🌐
EDUCBA
educba.com › home › software development › software development tutorials › html tutorial › html description list
HTML Description List | Different Types of HTML Description List Tags
March 20, 2023 - This article describes the Description list or Definition list and how it is useful in an HTML document. So how to define a description list? In simple terms, we can say it is a list of definitions (for example, glossaries to present the information ...
Address   Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai
🌐
w3grads
w3grads.com › html › html-description-lists
HTML Description Lists: Tips, Tricks, and Examples
HTML description lists are those lists in which each item contains its description. Like other lists this list also has several uses, for example, a user wants to add a definition of a particular item on his webpage so he uses a description ...
🌐
Tutorialspoint
tutorialspoint.com › html › html_definition_lists.htm
HTML - Definition Lists
A description list is defined by <dl> tag along with the <dt> and <dd> tags. Where <dt> tag defines the definition term, and <dd> tag defines the corresponding definition. HTML definition lists define list items having the structure of terms and their corresponding definitions.
🌐
W3Schools
w3schools.com › html › html_lists.asp
HTML Lists
HTML HOME HTML Introduction HTML Editors HTML Basic HTML Elements HTML Attributes HTML Headings HTML Paragraphs HTML Styles HTML Formatting HTML Quotations HTML Comments HTML Colors ... HTML Tables Table Borders Table Sizes Table Headers Padding & Spacing Colspan & Rowspan Table Styling Table Colgroup HTML Lists
🌐
HTML Dog
htmldog.com › guides › html › intermediate › definitionlists
Description Lists | HTML Dog
Rather than containing li elements, though, description lists have dt elements, which are the terms, followed by dd elements, which are the descriptions associated to the dt elements. There doesn’t have to be one dt followed by one dd, there can be any number of either. For example, if there are a number of words that have the same meaning, there might be a number of dt’s followed by one dd. If you have one word that means various different things, there might be one dt followed by several dd’s. <h1>Some random glossary thing</h1> <dl> <dt>HTML</dt> <dd>Abbreviation for HyperText Markup
🌐
YouTube
youtube.com › watch
Description list in HTML - YouTube
HTML Description List or Definition List displays elements in definition form like in dictionary. The dl, dt and dd tags are used to define description list....
Published   June 29, 2019
🌐
W3Schools Blog
w3schools.blog › home › description list in html
Description List in HTML - W3schools
August 3, 2019 - In the HTML Description list, entries are listed like a dictionary or encyclopedia, and hence it is also called a Definition List.
🌐
CodeWithHarry
codewithharry.com › tutorial › html-definition-list-tutorial
Definition Lists | HTML Tutorial | CodeWithHarry
A Definition List in HTML is used to represent a list of terms along with their corresponding descriptions or definitions.