- <!--...-->
- <!DOCTYPE> Declaration
- <a>
- <abbr>
- <acronym>
- <address>
- <applet>
- <area>
- <article>
- <aside>
- <audio>
- <b>
- <base>
- <basefont>
- <bdi>
- <bdo>
- <big>
- <blockquote>
- <body>
- <br>
- <button>
- <canvas>
- <caption>
- <center>
- <cite>
- <code>
- <col>
- <colgroup>
- <data>
- <datalist>
- <dd>
- <del>
- <details>
- <dfn>
- <dialog>
- <dir>
- <div>
- <dl>
- <dt>
- <em>
- <embed>
- <fieldset>
- <figcaption>
- <figure>
- <font>
- <footer>
- <form>
- <frame>
- <frameset>
- <h1> to <h6> s
- <head>
- <header>
- <hgroup>
- <hr>
- <html>
- <i>
- <iframe>
- <img>
- <input>
- <ins>
- <kbd>
- <label>
- <legend>
- <li>
- <link>
- <main>
- <map>
- <mark>
- <menu>
- <meta>
- <meter>
- <nav>
- <noframes>
- <noscript>
- <object>
- <ol>
- <optgroup>
- <option>
- <output>
- <p>
- <param>
- <picture>
- <pre>
- <progress>
- <q>
- <rp>
- <rt>
- <ruby>
- <s>
- <samp>
- <script>
- <search>
- <section>
- <select>
- <small>
- <source>
- <span>
- <strike>
- <strong>
- <style>
- <sub>
- <summary>
- <sup>
- <svg>
- <table>
- <tbody>
- <td>
- <template>
- <textarea>
- <tfoot>
- <th>
- <thead>
- <time>
- <title>
- <tr>
- <track>
- <tt>
- <u>
- <ul>
- <var>
- <video>
- <wbr>
HTML <dfn> Tag
Example
Mark up a term with <dfn>:
<p><dfn>HTML</dfn> is the standard markup language for creating web pages.</p>
More "Try it Yourself" examples below.
Definition and Usage
The <dfn>
tag stands for the "definition element", and it specifies a term that is going to be defined within the content.
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. Just as the content of the <dfn>
element:
2. Or, with the title attribute added:
Example
<p><dfn title="HyperText Markup Language">HTML</dfn> is the standard markup language for creating web pages.</p>
3. Or, with an <abbr> tag inside the <dfn>
element:
Example
<p><dfn><abbr title="HyperText Markup Language">HTML</abbr></dfn> is the standard markup language for creating web pages.</p>
4. Or, with the id attribute added. Then, whenever a term is used, it can refer back to the definition with an <a> tag:
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>
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: