🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Expert Masterclasses.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.
REFERENCEhtml

html Documentation

LOADING ENGINE...

HTML Description List Tag

Master the description list. Learn how to use <dl>, <dt>, and <dd> for key-value pairs and definitions.

dl.html
<!-- Description List -->
<dl>
<dt>Term</dt>
<dd>Definition</dd>
</dl>
📄
anchor-link.html
1 / 7
📄

Tutor:Description lists organize terms and definitions. The <dl> tag creates a semantic list for key-value pairs, perfect for glossaries and metadata.


Description List Mastery

Unlock nodes by learning description list structures.

Concept 1: The Description List

The <dl> tag (short for "description list") is used to create a list of terms and their descriptions. It's perfect for glossaries, metadata, or any key-value pairs.

System Check

What does 'dl' stand for?


Community Holo-Net

Showcase Your Layouts

Built a layout or container structure? Share your div-based designs.

Enjoying this guide?

Codesyllabus is 100% free and open-source. Support our mission, pay for server infrastructure, and fuel new tutorials by buying us a coffee!

HTML Description List Tag

Author

Pascual Vila

Frontend Instructor.

Description lists organize terms and their definitions semantically. The <dl> tag creates a structured list perfect for glossaries, metadata, and key-value pairs.

DT and DD Elements

Inside a <dl>, use <dt> (description term) for the term and <dd> (description definition) for its description. Multiple <dd> elements can follow one <dt>.

Opening and Closing

Always close a description list with </dl>. Each <dt> and <dd> should also be properly closed for valid HTML.

Semantics & Best Practices

The <dl> tag provides semantic meaning for term-definition pairs. It helps screen readers understand relationships between terms and descriptions, making your content more accessible. Perfect for glossaries, metadata, and structured information.

Description List Tag Glossary

<dl> (Description List)
The HTML element that creates a list of terms and their descriptions. Perfect for glossaries and key-value pairs.
<dt> (Description Term)
The term or name in a description list. Multiple <dd> elements can follow one <dt>.
<dd> (Description Definition)
The description or definition that follows a <dt> term. Can appear multiple times for one term.
Semantics
Description lists provide semantic structure for term-definition pairs, improving accessibility and SEO.