Home | Computer Science

<
FONT

Defination

The <font> tag was used in HTML 4 to specify the font face, font size, and color of text.


FONT There are three types of font
Syntax of Font is
<font face="magento" color="red" size=20>
Font is given.
</font>
Program
INPUT

<html> <head> <body> <font face="magento" color="red" size=20>Font is given</font> </body> </html>

OUTPUT