Your browser does not support JavaScript!'

Abbreviation tag in html ~ The Actual Use & Stylish [abbr tag] ~ VUSs

Welcome to VUSs, as you guys know. VUSs is all about Computer Science's fundamentals and Tests Preparation.
All published articles are organized in simple, easy, and short English sentences to familiarize the students with computer science.
In that respect today's article is Abbreviation tag in html ~ The Actual Use & Stylish [abbr tag]


Today's Topic
Abbreviation tag in html ~ The Actual Use & Stylish [abbr tag]


HTML Abbr Tag
HTML Abbr Tag




<abbr title="Hyper Text Markup language" >Html</abbr>
Output:

HTML

HTML Styling the Abbreviation Tag

Describes an abbreviation (acronyms). HTML <abbr> Tag (Abbr) represents an abbreviation or acronym, An "Abbr" element is used with a title attribute to associate a complete text explanation of an Abbreviation. But title attribute in the Abbr is completely optional, it can provide an expansion or description for the abbreviation.

Styling the HTML Abbreviation Tag

<abbr title="" > </abbr>

<style type="text/css">
 abbr{
      border-bottom: 1px double #31a07c;
      color: #31a07c;
       padding: 0px;
        margin: 2px;
         text-decoration: underline;
	}
</style>

Output:

HTML

An Online HTML Editor allows you to do HTML practice online on a web based Html Editor here is it's linkOnline HTML Editor

HTML Tags

Post a Comment

0 Comments

^