Summary -

In this topic, we described about the <dfn> tag with detailed example.

Used to defining instance of a term. The <dfn> tag used to represent the defining instance of term. The tag can be represented like <dfn></dfn> with the term inserted between the opening and closing tags.

The <dfn> can be used only once as one term need not to be defined if it already defined. The first instance (paragraph, description list group, or section) of specific <dtn> element appears in should contain definition of the term defined.

Syntax -

<dfn>.. text here.. </dfn>

Example -

<!DOCTYPE html>
<html>
	<head>
		<title>details tag text example.. </title>
	</head>
	<body>
	   <p><dfn> TutorialsCampus’s </dfn> objective is to deliver the point 
	   to point online content on various technologies (including 
	   technical and non-technical) to encourage the reader to
	    learn and gain expertise on their desired skills 
	    without any conditions and restrictions. </p>
	</body>
</html>

Output -

TutorialsCampus’s objective is to deliver the point to point online content on various technologies (including technical and non-technical) to encourage the reader to learn and gain expertise on their desired skills without any conditions and restrictions.