I added a sup tag inside a title tag but it doesn't seem to work. Surprisingly, the same sup tag works perfectly fine within li tags. Can anyone explain why this is happening? I tried changing the title tags to H class tags but I'm still curious about what's causing this issue. Here is the code snippet:
<ul>
<title>TPC <sup>®</sup></title>
<li> TPC<sup>®</sup></li>
<li> TPC<sup>®</sup></li>
<li> TPC<sup>®</sup></li>
</ulgt;
The sup tag seems to be functioning properly in all the li elements except for the title. Instead of rendering the superscript, it displays the actual code as text.