Well, I have a H2 tag with a company name and next to that in the same line we need to have a Superscript tag (TM), I have:
<h1 class="Red">Company Name</h1><sup>™</sup>
I get:
Company Name
™
I guess there is a way to avoid this newline between those tags using CSS or something but I am not able to figure it out, I will appreciate any help.
The proper format is to wrap the entire phrase inside your
<h1>
tag like so<h1 class="Red">Company Name<sup>™</sup></h1>