HTML <dfn>
Tag
The <dfn>
tag is used to define a definition term within a document. It is typically used to indicate the definition of a term in a glossary or a glossary-like context.
Example:
In the following example, we will define the term HTML using the <dfn>
tag:
<dl>
<dt>HTML</dt>
<dd>Hypertext Markup Language</dd>
</dl>
<dfn>
Tag Attributes:
Attribute | Description |
---|---|
title | Specifies a title for the content of the <dfn> tag, which can provide additional information when the user hovers over the element. |