HTML Formatting Tags

                                                          HTML Formatting Tags

After Basic HTML Tags we describe Formatting Tags. Formatting tags are used to format the data which we can use on HTML for formatting our data or which we write.

  • <abbr> :- It defines abbrevation or acronynm. Abbrevation is used to give useful information                     to browers, search engines and for Translation systems.

  • <address> :- It defines address of an author of a article.
  • <b> :- <b> tag is used to show bold tag or text in dark format.
  • <bdo> :- <bdo> tag is used to put text in Bi-Directional format. With the help of <bdo> tag we put our text in both the direction.
    • Right to left
    • Left to right 
<html> 
  <head>
   <title>Formatting Tags</title> 
  </head> 
 <body> 
   <abbr title="Hyper text Mark up Language">HTML</abbr>
   <address>
     XYZ Limited<br>
     Visit us at :- <br>
     India <br>
   <address>
    <b>Hyper Text Markup Language</b>
  <bdo dir="rtl"> Hyper Text Markup Language </bdo> 
  <bdo dir="ltr"> Hyper Text Markup Language </bdo> 
 </body> 
</html>

use this coading and enjoy output

Comments

Popular Posts