Abbreviations, Definitions, Quotations and Citations

Abbreviations, Definitions, Quotations and Citations

Denoting Abbreviations

The abbr element allows us to denote an abbreviation. When using this element, we use the title attribute to provide the expanded text that the abbreviation represents.

<html>
  <head>
    <title>Example</title>
  </head>
  <body>
    I like apples and oranges. The
    <abbr title="Florida Department of Citrus">FDOC</abbr> regulates the Florida
    citrus industry.
  </body>
</html>

Defining Terms

The dfn element denotes the defining instance of a term. This is the instance that explains the meaning or significance of a word or phrase.

Quoting Content from Another Source

The element denotes content quoted from another source.

Citing the Title of Another Work

The cite element denotes the title of a cited work, such a book, article, film, or poem.