<b>
This tag specifies bold text.
For example:
<b>Hello</b>
Becomes:
<i>
This tag is used to display the content in italic.
For example:
<i>My name is HTML</i>
Becomes:
sub
This tag is used for defining subscript text
For example:
x<sub>2</sub> - x<sub>1</sub> = x<sub>0</sub>
Becomes:
sup
This tag is used for defining superscript text
For example:
x<sup>2</sup> - y<sup>1</sup> = 5<sup>2</sup>
Becomes:
del
This tag is used for markup of deleted text.
For example:
I am <del>CSS</del> HTML.
Becomes:
ins
This tag is used to indicate newly inserted text.
For example:
I am <ins>HTML 5</ins>
Becomes:
mark
This tag specifies a text highlighted for reference purposes, that is for its relevance in another context
For example:
HTML is the <mark>foundation stone</mark> of web.
Becomes:
iframe
You can define an inline frame with HTML tag. The tag is not somehow related to tag, instead, it can
appear anywhere in your document. The tag defines a rectangular region within the document in which the
browser can display a separate document, including scrollbars and borders. An inline frame is used to
embed another document within the current HTML document.
The src attribute is used to specify the
URL of the document that occupies the inline frame. It pops up the text if it is not supported.
For example:
<iframe src = "logo.svg" width = "555" height = "200">
Sorry your browser does not support inline frames.
</iframe>
