Home

Chapter 3: Text Formatting

Topics we are going to learn in this page:

  1. em
  2. i
  3. b
  4. strong
  5. span
  6. div
  7. sub
  8. sup
  9. mark
  10. del

Explantion of the topics:

  1. em  &  i


  2. b  &  strong


  3. span

    The <span> HTML element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes). It should be used only when no other semantic element is appropriate. <span> is very much like a <div> element, but <div> is a block-level element whereas a <span> is an inline-level element.

    Example:
    Code:

        <p> Gradually add the <span style="color: #f00;"> olive oil </span> while running the blender slowly. </p>
                

    Output:

    Gradually add the olive oil while running the blender slowly.


  4. div


  5. sub

    The <sub> HTML element specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.

    Example:
    Code:

        <p> Chemical formula of water is  H<sub>2</sub>O and chemical formula of glucose is C<sub>6</sub>H<sub>12</sub>O<sub>6</sub> </p>
                

    Output:

    Chemical formula of water is H2O and chemical formula of glucose is C6H12O6


  6. sup

    The <sup> HTML element specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller text.

    Example:
    Code:

        <p> a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup> </p>
                

    Output:

    a2 + b2 = c2


  7. mark


  8. del

    The <del> HTML element represents a range of text that has been deleted from a document. This can be used when rendering "track changes" or source code diff information, for example. (The <ins> element can be used for the opposite purpose: to indicate text that has been added to the document.)

    Example:
    code:

        <p><del>This text has been deleted</del>, here is the rest of the paragraph.</p>
                

    Code:

    This text has been deleted, here is the rest of the paragraph.