HTML Tutorial

Definition Lists in HTML

Definition lists are used to present a list of terms and their corresponding descriptions. They are useful when you need to define terms or concepts, such as in a glossary or dictionary. In HTML, you create definition lists using three tags:
  1. <dl>: This is the container for the entire definition list.
  2. <dt>: This tag is used for each term or item being defined.
  3. <dd>: This tag is used for the description or definition of the term

How to Create a Definition List

Example:

				
					<dl>
<dt>HTML</dt>
<dd>HTML stands for HyperText Markup Language. It is used to create the structure of web pages.</dd>

<dt>CSS</dt>
<dd>CSS stands for Cascading Style Sheets. It is used to style and layout web pages.</dd>

<dt>JavaScript</dt>
<dd>JavaScript is a programming language that enables interactive web pages.</dd>
</dl>
				
			

Here’s a basic tag Explanation:

<dl>: Starts the definition list.

<dt>: Defines a term or item, such as “HTML”.

<dd>: Provides the description or definition for the term, like “HTML stands for Hyper Text Markup Language.”

Try It Yourself