The HTML <q> tag specifies a brief quotation.
Typically, browsers automatically add quotation marks around the quoted text.
Example
<p>WWF’s goal is to: <q>Build a future where people live in harmony with nature.</q></p> |
The HTML <abbr>
tag marks abbreviations or acronyms and can include a title
attribute to show the full form on hover, aiding browsers and search engines.
Example
<p>The <abbr title=”World Health Organization”>WHO</abbr> was founded in 1948.</p> |