<i> Tag is like putting something in italics just for looks, while <em> Tag is for adding real emphasis or importance to the text, indicating that it should be read with more attention.
An example for <em> could be: "Just do it already!", or: "We had to do something about it". A person or software reading the text would pronounce the words in italics with an emphasis, using verbal stress.
An example for <i> could be: "The Queen Mary sailed last night". Here, there is no added emphasis or importance on the word "Queen Mary". It is merely indicated that the object in question is not a queen named Mary, but a ship named Queen Mary.
Example:
Code:
<p title="i tag Output"> I looked at it and thought <i>This can't be real! </i></p> <p title="em tag Output"> We <em>had to do</em> something about it. </p>
Output:
I looked at it and thought This can't be real!
We had to do something about it.
Example:
Code:
<p title="b tag Output"> Keywords are displayed with the default style of the <b>element, likely in bold. </b></i></p> <p title="strong tag Output"> Before proceeding, <strong>make sure you put on your safety goggles </strong>.</p>
Output:
Keywords are displayed with the default style of the element, likely in bold.
Before proceeding, make sure you put on your safety goggles.
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.
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
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
Example:
Code:
<p>Do not forget to buy <mark>milk</mark> today.</p>
Output:
Do not forget to buy milk today.
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.