What is the html code for a superscript like if I want to say 3 squared?
If you are asking about HTML here it is:
Hello <sup>world</sup> will give you Hello world
Hello <sup>world</sup>
2<sup>3</sup>=8 will give you 23=8
2<sup>3</sup>=8
same way for subscript also use <sub>text</sub> will give you text
<sub>text</sub>
Hope it helps.
Thanks.
Make sure to enable Input Format = Full HTML if that is not your default!
Tom
Comments
<sup>text</sup>
If you are asking about HTML here it is:
Hello <sup>world</sup>will give you Hello world2<sup>3</sup>=8will give you 23=8same way for subscript also use
<sub>text</sub>will give you textHope it helps.
Thanks.
Superscript
Make sure to enable Input Format = Full HTML if that is not your default!
Tom