Menu
HTML dfn Tag

The <dfn></dfn> tags are used to indicatede the definition meaning of a word, phrase or term.

except means other than; accept means to receive.

<dfn>except</dfn> means other than; <dfn>accept</dfn> means to receive.

The <dfn> does exactly the same thing as the <i> (Italic) tag. Remember, although xhtml is xml, html is not used to identify or define the structure of data, it's use to define how a webpage should be laid out visually, for example headings, paragraphs, lists etc. So there's really no reason not to use the more common <i> tag.

except means other than; accept means to receive.

<span style="font-style:italic">xcept</span> means other than; <span style="font-style:italic">accept</span> means to receive.

Although neither of these tags is deprecated, so future browsers should continue to support them, because style is now the prefered way to define text and font features, these tags are likely to become deprecated at some point in the future. So you should prefer to set a style attribute for the definition word as shown above.


Learn more at amazon.com

More HTML Code:
• Nesting HTML Lists
• Divide a Table Into Head (thead), Body (tbody), and Footer (tfoot) Sections
• HTML5 Nav Element
• Using col and colgroup to Apply Attributes to a Table Column
• HTML Textarea Basics
• Code For a Basic 2-Column Fluid Webpage Layout
• HTML5 role Attribute
• Changing the Size of an Image on Your Webpage
• Aligning an Image on Your Web Page
• Webpage DOCTYPE Declarations Explained