Recents in Beach

Text Abbreviation in Html


Text Abbreviation in Html
The <abbr> tag in HTML is used to define the abbreviation or short form of an element. The <abbr> and <acronym> tags are used as shortened versions and used to represented as a series of letters. It is used to provide useful information to the browsers, translation systems, and search-engines.

Example:


<!DOCTYPE html>

<html>

<head>

<title>abbr tag</title>

<style>

body {

text-align:center;

}

 h1 {

color:green;

}

</style>

</head>

<body>

<h1> Launch Pad Blog </h1>

<h2><abbr> Tag</h2>

<abbr title=" Launch Pad Blog ">LPB</abbr>

</body>

</html>  

 

Text Abbreviation in html

ACROYNM TAG IN HTML LINK:


Post a Comment

0 Comments