HTML <dfn> tag
HTML <dfn> tag : Definition
• The HTML <dfn> tag is generally known as HTML definition tag that is used for marking a term which is being defined within the content.
• The nearest parent of the <dfn> tag must also contain the definition/explanation for the term.
<dfn> tag example :
<!DOCTYPE html> <html> <body> <p><dfn>HTML</dfn> is the standard markup language for creating web pages.</p> </body> </html>
OUTPUT :
HTML is the standard markup language for creating web pages.