Continue

 Special Terms

The <dfn>...</dfn> element (or HTML Definition Element) allows you to specify that you

are introducing a special term. It's usage is similar to italic words in the midst of a paragraph. Typically, you would use the <dfn> element the first time you introduce a key term. Most recent browsers render the content of a <dfn> element in an italic font.

Example

<!DOCTYPE html>

<html>

<head>

<title>Special Terms Example</title>

</head>

<body>

<p>The following word is a <dfn>special </dfn> term.</p>

</body>

 </html>

This will produce the following result:

The following word is a special term.

Comments

Popular Posts