Html Quotations - abbr, address tag

How to use <abbr> and <address> tags in html?

Explanation

HTML <abbr> for Abbreviations :

<abbr> </abbr>
In HTML we use the tag <abbr> to define an abbreviation or an acronym. Abbreviations are marked to provide useful information about the browsers to the users.
Example :
<abbr title="Hyper Text Markup Language">HTML</abbr> is the standard markup language used to create web design.

Result :
HTML is the standard markup language used to create web design.

HTML <address> for Contact Information:

<address> </address>
In HTML the contact information of the document is provided by using the tag <address>. Any content written inside this tag defines the author or owner of the document. This element is displayed in italic. A line break before and after this element is added usually by most of the browsers.
Example :
<address>
Tutorials by Hscripts<br>
Visit us at: hscripts.com<br>
Hiox Softwares, Coimbatore<br>
India.
</address>

Result :
Tutorials by Hscripts
Visit us at: hscripts.com
Hiox Softwares, Coimbatore
India.


Ask Questions

Ask Question