HTML <dt>
Tag
The <dt>
tag in HTML is used to define a term/name in a description list. It is an essential part of creating a description list, which consists of terms (<dt>
) and descriptions (<dd>
) that are associated with each other.
Usage
The <dt>
tag is used within a <dl>
(description list) element to define terms or names that are then followed by their descriptions specified with the <dd>
tag.
Example
Below is an example of how the <dt>
tag is used in conjunction with the <dl>
and <dd>
tags:
<dl>
<dt>HTML</dt>
<dd>Hypertext Markup Language</dd>
<dt>CSS</dt>
<dd>Cascading Style Sheets</dd>
</dl>
Attributes
Attribute | Description |
---|---|
class | Specifies one or more class names for an element (can be used for styling with CSS) |
id | Specifies a unique id for an element |
style | Specifies an inline style for an element |
Summary
In summary, the <dt>
tag in HTML is used to define terms or names in a description list. It works in conjunction with the <dl>
and <dd>
tags to create structured lists of terms and their corresponding descriptions.