Font is the life of any document. In the use of fonts, a web page creator not only makes the document beautiful, but also reveals his own artistic identity. The <font> tag is important for beautifully rendering a document via html.
Let's say, I am a Web designer, I need to fix the font of this article.
<font size = "10" face = "Arial" Color = "green"> I am a Web designer </font>
Here size = "10" indicates the size of the font. That is, what will be the size of the text I am a Web designer.
face = "Arial" means the language of the text will be Arial.
Color = "green" means the color of the text will be green.
Example: html code using different types of fonts, colors and sizes.
<! DOCTYPE html>
<html lang = "en">
<head>
<title> Font tag Example </title>
</head>
<body bgcolor = "red">
<font size = "10" face = "Arial" Color = "green"> I am a Web designer </font>
</body>
</html>