DFN HTML

HTML <dfn> Tag The HTML <dfn> tag represents the HTML definition tag. The content of the HTML <dfn> tag is a term whose definition is understood to be the nearby text by the browser. Syntax: <dfn>Content</dfn> Example: <!DOCTYPE html> <html> <body> <p><dfn>Apple</dfn> is a fruit.</p> </body> </html> Explanation: In the above example, we are using … Read more