The commonly used method to format superscript in HTML is by doing in the following way:
<sup>hullo world</sup>
To achieve the same effect using CSS, you can set the vertical-align Property:
<style>
span
{
vertical-align:super;
}
</style>
<p>hullo world<span>TM</span></p>










































