Page 92 - 2403_Trackpad_V5.1_C5_Fb
P. 92
THE <SUP> TAG
The <sup> (superscript) tag is used to display text above the baseline. This tag is commonly used
while writing mathematical formulas in a webpage. For example:
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>Maths Formula</TITLE>
</HEAD>
<BODY>
<P>The area of a square is calculated as a<SUP>2</SUP>.</P>
</BODY>
</HTML>
THE <STRONG> TAG
The <strong> tag emphasises the importance of the enclosed text, making it appear bold. This tag
is typically used to highlight key points or to show that certain information is critical. For example:
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE> Emphasises Using Strong Tag </TITLE>
</HEAD>
<BODY>
<P>It is <STRONG>crucial</STRONG> that you submit the form by Friday.
</P>
</BODY>
</HTML>
90 Premium Edition-V

