HTML Abbreviation
HTML element <abbr>
defines an abbreviation or an acronym, which is a shortened form of a word or a phrase like HTML, CSS, ATM, WHO, ASAP, etc.,
Using abbreviations in an HTML document will provide additional useful information to browsers, search engines, and translation systems.
<abbr title="Automated Teller Machine">ATM</abbr>
Example
We can check the outcome of the below HTML document to see how it looks.
<!doctype html>
<html lang="en">
<head>
</head>
<body>
<h1>HTML Abbreviations</h1>
<p>
<abbr title="Automated Teller Machine">ATM</abbr>
is an electronic banking outlet for completing basic transactions without the aid of a branch representative or teller.</p>
<abbr>
</body>
</html>
Overall
Make sure to use HTML Abbreviations for any acronyms we use in the content.