Varada
Varada

Reputation: 17112

How can we add superscript in html page?

 <td>20<sup>o</sup>C</td>

is not giving the output with 'o' as super script. How can we add superscript in html page? I am getting the output as

20oC only!!

Upvotes: 2

Views: 679

Answers (3)

Gaurav
Gaurav

Reputation: 29

Superscripts in HTML can be implied using the tag. Do it as this :

x<sup>2</sup>+2x+1

Upvotes: 0

Ash Burlaczenko
Ash Burlaczenko

Reputation: 25475

This doesn't make the text superscript but it will meet your needs for this occasion

<td>20&deg;C</td>

Upvotes: 2

trutheality
trutheality

Reputation: 23455

Use &deg; to get the ° symbol.

P.S. <sup> should have worked.

Upvotes: 8

Related Questions