Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I add a small number into my html?

Tags:

html

css

I'm having a difficult time doing this probably because I'm not sure what to even call it. But a client wants me to put a small number one in some text at the end of a sentence - wich indicates that they should find the small 1 at the bottom of the page to read more details about that particular sentence. You see this type of thing a lot on container and supplement labels. Can this be accomplished with html? Please let me know if you need clarification.

Kind of like this except instead of an astrick, a small one:

*These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent any disease.

like image 345
MikeTheCoder Avatar asked Dec 06 '22 10:12

MikeTheCoder


1 Answers

You must be looking for superscript.

<p>This is <sub>subscript</sub> text.</p>

<p>This is <sup>superscript</sup> text.</p> 

In practice:

This is subscript text.

This is superscript text.

like image 116
The Obscure Question Avatar answered Jan 04 '23 17:01

The Obscure Question