HTML <abbr> for Abbreviations Explain
The HTML <abbr> element defines an abbreviation or an acronym.
Marking abbreviations can give useful information to browsers, translation systems and search-engines.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<p>Marking up abbreviations can give useful information to browsers, translation systems and search-engines.</p>
</body>
</html>
Html Code Result:
The WHO was founded in 1948.
Marking up abbreviations can give useful information to browsers, translation systems and search-engines.
Marking up abbreviations can give useful information to browsers, translation systems and search-engines.
Post a Comment