HTML Element <acronym> Example
The HTML element <acronym>
is used to define an acronym or abbreviation of a phrase.
A phrase contains multiple words, and the acronym is the short form of the phrase, which is usually a combination of the first letter of each word of the phrase.
Some of the examples are below.
- The acronym for "World Health Organization" is WHO.
- The acronym for "HyperText Markup Language" is HTML.
Here is an example that explains the element in action. Click the below link to see the live demo.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example - HTML Element acronym</title>
</head>
<body>
<p>An <acronym title="Automated Teller Machine">ATM</acronym> can be used to deposit and withdraw cash easily without going to a bank.</p>
</body>
</html>