HTML Tutorial

HTML Tag: <dfn>

Usage of <dfn>

The HTML <dfn> (definition) tag is used to define a term or phrase within the context of a document. It visually sets apart the defined term from the rest of the text, providing a clear and contextual definition.

Attributes of <dfn>

The <dfn> tag has no specific attributes.

Examples with <dfn>

<p>The <dfn>Internet</dfn> is a global system of interconnected computer networks.</p>
<p>The <dfn>Central Processing Unit</dfn> (CPU) is the primary component of a computer system.</p>

HTML Example: Exploring the <dfn> Tag

<!DOCTYPE html>
<html>
<body>

<h1><dfn>Term</dfn> Definition</h1>

<p><b><dfn>World Wide Web</dfn></b> A system of interlinked hypertext documents accessed via the internet.</p>
<p><b><dfn>Artificial Intelligence</dfn></b> The theory and development of computer systems able to perform tasks normally requiring human intelligence.</p>

</body>
</html>