Reputation: 17112
<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
Reputation: 29
Superscripts in HTML can be implied using the tag. Do it as this :
x<sup>2</sup>+2x+1
Upvotes: 0
Reputation: 25475
This doesn't make the text superscript but it will meet your needs for this occasion
<td>20°C</td>
Upvotes: 2
Reputation: 23455
Use °
to get the ° symbol.
P.S. <sup>
should have worked.
Upvotes: 8