html abbr tag syntax

html abbr tag syntax

Role: mark an acronym

Description: <abbr> tag indicates abbreviation or acronym, such as "WWW" or "NATO". Marked by abbreviation, you can browser, spell checking and search engines to provide useful information. <abbr> tag in HTML 4.0 is initially introduced, it represents text it contains is an abbreviated form of a longer word or phrase.

Note: You can use the global title attribute in the <abbr> tag, so that it is possible to display the complete version Acronym / Acronym mouse pointer moves to the upper <abbr> element.

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>

Guess you like

Origin www.cnblogs.com/furuihua/p/11918263.html