HTML <font> Tag Example

HTML Code:

<p>This is normal text.</p>

<p><font color="red" size="5" face="Arial">
This is text with font tag (red, size 5, Arial)
</font></p>
  

Output in Browser:

This is normal text.

This is text with font tag (red, size 5, Arial)

Note: The <font> tag is deprecated in HTML5. Use CSS instead for modern websites.

CSS Alternative:

<p style="color: red; font-size: 24px; font-family: Arial;">
This is the same text using CSS
</p>
  

This is the same text using CSS