UK ['æbr] US ['æbr]
abbreviation abbreviation
html abbr tag syntax
Function:Mark an abbreviation
Description:<abbr> The tag indicates an abbreviation or abbreviation, such as "WWW" or "NATO". By tagging abbreviations, you provide useful information to browsers, spell checkers, and search engines. The <abbr> tag, originally introduced in HTML 4.0, indicates that the text it contains is a shortened form of a longer word or phrase.
Note: You can use the global title attribute in the <abbr> tag, so that the complete abbreviation/abbreviation can be displayed when the mouse pointer moves over the <abbr> element Version.
html abbr tag example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> The <abbr title="United Nations">UN</abbr> was established in 1945 </body> </html>
Run instance »
Click the "Run instance" button to view the online instance