Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Html upper and lower indecies

Tags:

html

css

markup

any ways to put into html using css upper or lower indecies like: ¹ or ₁ (I also need latin letters).

like image 378
Max Frai Avatar asked Mar 20 '12 19:03

Max Frai


People also ask

What is the HTML code for superscript?

<sup>: The Superscript element The <sup> HTML element specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller text.

How do you write 1st 2nd 3rd in HTML?

The HTML <sup> element is found within the <body> tag. The <sup> tag is used to comply with typographical standards or conventions. The <sup> tag is generally used to specify exponents such as m2 and ordinal numbers such as 1st, 2nd or 3rd.

What is INS and DEL in HTML?

The <ins> HTML element represents a range of text that has been added to a document. You can use the <del> element to similarly represent a range of text that has been deleted from the document.


1 Answers

Use the <sup> and <sub> tags.

like image 149
Elliot Bonneville Avatar answered Nov 03 '22 22:11

Elliot Bonneville