Computer Applications

With the help of which tag of HTML, you can display (a2 + b2) in the web page?

  1. <P>
  2. <SUP>
  3. <SUB>
  4. <FONT>

HTML Intro

2 Likes

Answer

<SUP>

Reason — The <SUP> tag is used to create superscripts on an HTML page. The given formula can be displayed by the following HTML code:

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

Answered By

1 Like


Related Questions