Computer Science, asked by anushkaagarwal3348, 5 months ago

12. Syntax for superscript is
(1 Point)
<SUP>
<SOP>
<SCR>​

Answers

Answered by anindyaadhikari13
3

Required Answer:-

Question:

  • Write the syntax of superscript tag.

Answer:

The correct Syntax of Superscript tag is <sup>.

  • The <sup> tag defines a superscript text.
  • Text written between <sup> and </sup> appears half a character above the normal line.
  • The <sup> tag is container tag i.e, it has both starting and ending.

Example:

If you want to write, a² - b² = (a + b)(a - b) then using <sup> tag, you can write in this way,

a<sup>2</sup> - b<sup>2</sup> = (a + b)(a - b)

which gives output as,

a² - b² = (a + b)(a - b)

Other HTML tags:

  • <b> for defining bold texts.
  • <i> tag defines italic texts.
  • <u> tag to underlined text.
  • <sub> to define subscript text.
Similar questions