abbr tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The abbr tag defines abbreviations for example PHP, JS, HTML…
Highlighting and interpreting abbreviations will provide useful information to browsers, translation systems, and search engines.
How to use the abbr . card
Example : Use the abbr tag to annotate abbreviated programming language names.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <abbr title="Hypertext Preprocessor">PHP</abbr>, <abbr title="Hypertext Markup Language">HTML</abbr>, <abbr title="Cascading Style Sheets">CSS</abbr>, <abbr title="JavaScript">JS</abbr> là những ngôn ngữ lập trình không thể thiếu để tạo nên một trang hiện nay. </body> </html>
Attributes of the abbr . tag
The abbr tag supports all Global Attributes in HTML.