Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

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>
Try it Yourself »

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.

The term inside the <dfn> tag can be any of the following:

1. The content of the <dfn> element (without a title attribute), like this:

Example

<p><dfn>HTML</dfn> is the standard markup language for creating web pages.</p>
Try it Yourself »

2. Or the title attribute of the <dfn> tag, like this:

Example

<p><dfn title="HyperText Markup Language">HTML</dfn> is the standard markup language for creating web pages.</p>
Try it Yourself »

3. Or the title attribute of an <abbr> tag inside the <dfn> element, like this:

Example

<p><dfn><abbr title="HyperText Markup Language">HTML</abbr></dfn> is the standard markup language for creating web pages.</p>
Try it Yourself »

4. Or, 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, like this:

Example

<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>
Try it Yourself »


Browser Support

Element
<dfn> Yes Yes Yes Yes Yes

Global Attributes

The <dfn> tag also supports the Global Attributes in HTML.


Event Attributes

The <dfn> tag also supports the Event Attributes in HTML.


Related Pages

HTML tutorial: HTML Quotation Elements

HTML DOM reference: DFN Object


Default CSS Settings

Most browsers will display the <dfn> element with the following default values:

Example

dfn {
  font-style: italic;
}
Try it Yourself »