HTML CSS examples for HTML Tag:dfn
The dfn element marks the defining instance of a term.
The dfn element is used to explain the meaning of a word.
The dfn element's title attribute must be the term that is being defined.
If the dfn element contains an abbr element, the abbreviation is the term that is being defined.
If dfn element has no title attribute and the contents of the element are text, then the text represents the term being defined.
The dfn Element summary
Item | Value |
---|---|
Element | dfn |
Local Attributes | None |
Contents | Text or one abbr element |
Tag Style | Start and end tag |
New in HTML5 | No |
Changes in HTML5 | None |
Style Convention | None |
Using the dfn Element
<!DOCTYPE html> <html> <head> <title>Example</title> </head> <body> <p> The <!--from www. j av a 2 s . c om--> <dfn title="CSS">CSS</dfn> is cool. </p> </body> </html>