HTML - <dfn> Tag


Description

The HTML <dfn> tag specifies a definition term.

Example

<!DOCTYPE html>
<html>

   <head>
      <title>HTML dfn Tag</title>
   </head>

   <body>
      <dl>
         <dt>
            
            <dfn>
               <abbr title = "Java Server Pages">JSP</abbr>
            </dfn>
            
         </dt>
         <dd>JSP is used to create dynamically generated web pages.</dd>
      </dl>
   </body>

</html>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements