Programmers will make use of text formatting tags to change the apperance of the given text contents.Few commonly used text formatting tags are,
Strong Tag : It is used to make the contents to appear as bold .
Emphasize Tag : It is used to make the text contents to appear as Italic . it is represented by "em" tag where 'em' stands for emphasize.
Mark Tag: It is used to highlight the given text content by providing the background color yellow as default.
h1 to h6 Tags : It includes h1, h2, h3, h4, h5 and h6 tags. "h1" tag provides the highest font size in Html whereas "h6" tag provides the lowest font size in Html. h1 to h6 tags font size decreases gradually.
Note : h1 to h6 tags can move contents to the next line without using the break tag.
Superscript Tag : It is generally provides the contents which will appears above the text.It is is represented by sup tag.
Subscript Tag : It is generally provides the contents which will appears below the text.It is is represented by sub tag.
Insertion Tag : It is used to provide underline for the given text contents.It is is represented by ins tag.
Deletion Tag : It is used to provide strike on the given text contents.It is is represented by del tag.
Marquee Tag : It is used to provide scrollings on the browser.It takes three important attributes they are
Direction : It is used to control the direction of scrollings has to move.
Scrollamount: It is used to control the speed of the scrolling.Higher the value faster the speed of the scrolling.
Loop : It is used to control the number of times the scrolling has to appear on the browser.
Note : Marquee tag is referred as deprecated tag,which means it is outdated.But in case if it is used we get the expected result.
Note : Background colour given by mark tag can be changed by using "style" attribute.This attribute can be used with any HTML tags.