Il tag HTML <dfn>



Descrizione

Il tag HTML <dfn> serve per indicare la definizione di un termine.

Esempio

<!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>

Produrrà il seguente risultato:

JSP
JSP is used to create dynamically generated web pages.

Attributi Globali

Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi

Attributi Evento

Questo tag supporta tutti gli attributi evento descritti in - HTML - Referenze Eventi

Compatibilità Browser

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Advertisements