HTML FORMATTING TAGS

 HTML FORMATTIG TAG


                                     If you use a word processor, you must be familiar with the ability to make text bold, italicized, or underlined; these are just three of the ten options available to indicate how text can appear in HTML.
FORMATTING TAGS


CENTER TAG

Syntax:-         <center>...</center>
Description:-  It make a content to in center form
Example:-
                      <center>the part of center</center>


PRESERVE TAG

Syntax:-          <pre>....</pre>
Description:-  It represent same format which you written during the developing time
Example:-
                      <pre>hi! ,my name is function(223){}</pre>


NONBREAK SPACING TAG

Syntax:-         &nbsp;
Description:-  It's help to no space occur during run time or when text will be showen by   browser                        to client.When you write a text between this format it never split the text.
Example:-
                      <p>human,&nbsp;man&nbsp;cool</p>


BOLD TAG

Syntax:-           <b>...</b>
Description:-   It make a text to dark both tag are give same result
Example:-
                        <b>Bond</b>



STRONG TAG

Syntax:-         <strong>...</strong>
Description:-  It make a text to dark this tag are give same result as bold
Example:-
                       <strong>Bond</strong>



ITALIC TAG

Syntax:-        <i>...</i>
Description:- It make a text in italic form
Example:-
                     <i>bond</i>


UNDERLINE TAG

Syntax:-         <u>...</u>
Description:-  It put underline below to text
Example:-
                      <u>crazy boy</u>



STRIKE TAG

Syntax:-         <strike>....</strike>
Description:-  It make a line on the text
Example:-
                       <strike>love</strike>


MONOSPACED TAG

Syntax:-         <tt>...</tt>
Description:-  It make text to half of size of your regular text what you are typing
Example:-
                      <tt>jack spero</tt>



SUPERSCRIPT TAG

Syntax:-        <sup>....</sup>
Description:- It make text upper the line and text size being small
Example:-
                     <sup>ok janu</sup>



SUBSCRIPT TAG

Syntax:-         <sub>....</sub>
Description:-  It make text to below the line and text size being small
Example:-
                      <sub>no janu</sub>



INSERT TAG

Syntax:-          <ins>....</ins>
Description:-  It make underlined through the text and displayed as inserted
Example:-
                      <ins>thank you</ins>



DELETE TAG

Syntax:-         <del>....</del>
Description:-  It make line through the text and displayed as deleted
Example:-     
                      <del>sorry </del>


BIG TAG

Syntax:-         <big>....</big>
Description:-  It make text to large in size
Example:-
                       <big>love</big>



SMALL TAG

Syntax:-         <small>....</small>
Description:-  It make text to small in size
Example:-
                       <small>hate</small>

Comments