HTML <dfn> Tag
Example
Mark up the defining instance of a term:
<p><dfn>HTML</dfn> is the standard markup language for creating web pages.</p>
Definition and Usage
The <dfn> tag represents the defining instance of a term in HTML.
The defining instance is often the first use of a term in a document.
The nearest parent of the <dfn> tag must also contain the definition/explanation for the term inside <dfn>.
The term inside the <dfn> tag can be any of the following:
1. The content of the <dfn> element (without a title attribute):
<p><dfn>HTML</dfn> is the standard markup language for creating web pages.</p>
2. The title attribute of the <dfn> tag:
<p><dfn title="HyperText Markup Language">HTML</dfn> is the standard markup language for creating web pages.</p>
3. The title attribute of an <abbr> tag inside the <dfn> element:
<p><dfn><abbr title="HyperText Markup Language">HTML</abbr></dfn> is the standard markup language for creating web pages.</p>
You can also add an id attribute to the <dfn> element. Then, whenever a term is used, it can refer back to the definition using an <a> tag:
<p><dfn id="html-def">HTML</dfn> is the standard markup language for creating web pages.</p>
<p>This is some text...</p>
<p>This is some text...</p>
<p>Learn <a href="#html-def">HTML</a> now.</p>
<p>This is some text...</p>
<p>This is some text...</p>
<p>Learn <a href="#html-def">HTML</a> now.</p>
Post a Comment