abbr mark and acronym mark

abbr mark and acronym mark
The <abbr> and <acronym> tags represent the abbreviations and acronyms presented in the web page, and the full name of the abbreviation is given through the title attribute . The difference between the two is that the <acronym> tag is used to represent an acronym , and often the abbreviation is a pronounceable word . For example:

<abbr title="United Nations" > UN .< / abbr ><br>
Jack weighs 90 < abbr title="kilograms"> kg .</ abbr ><br>
< abbr title="Save Our Soul"> SOS </ abbr ><br>
< acronym title="North Atlantic Treaty Organization"> NATO </ acronym ><br>
< acronym title="radio detecting and ranging"> radar </ acronym ><br>
< abbr title="Federal Bureau of Investigation"> FBI </ abbr >

The result is:
UN
Jack weighs 90 kg.
SOS
NATO
radar
FBI
Some abbreviations, like URL and SQL , can be pronounced as a word or individually . In this case, the <abbr> tag is better than <acronym>. The style sheet can now be used to specify spoken pronunciation, for example

< abbr title="Structured Query Language">SQL</ abbr >

and

abbr[title="Structured Query Language"]{speak:spell-out;}

Use together.

[This tag is not useful for browsing, but it can be used if you want the text to be searchable]

<<:  Understand CSS3 FlexBox elastic layout in 10 minutes

>>:  Priority analysis of and or queries in MySQL

Recommend

Summary of B-tree index knowledge points in MySQL optimization

Why do we need to optimize SQL? Obviously, when w...

Ideas and practice of multi-language solution for Vue.js front-end project

Table of contents 1. What content usually needs t...

How to query duplicate data in mysql table

INSERT INTO hk_test(username, passwd) VALUES (...

Install CentOS 7 on VMware14 Graphic Tutorial

Introduction to CentOS CentOS is an enterprise-cl...

Several ways of running in the background of Linux (summary)

1. nohup Run the program in a way that ignores th...

Three common methods for HTML pages to automatically jump after 3 seconds

In practice, we often encounter a problem: how to...

Solve the problem of docker pull image error

describe: Install VM under Windows 10, run Docker...

MySQL database basic syntax and operation

MySQL database basic syntax DDL Operations Create...

How to add Tomcat Server configuration to Eclipse

1. Window -> preferences to open the eclipse p...

Solution to 1449 and 1045 exceptions when connecting to MySQL

Solution to 1449 and 1045 exceptions when connect...

How to create Baidu dead link file

There are two types of dead link formats defined b...