Font Tag <font></font>:-  The <font> tag specifies the font face, font size, and color of text.   Syntax:-   <font face="font name"  size="value form 1 to 7"  color="color name"> text!</font>    Attributes:-             Attribute         Value         Description            color         rgb(x,x,x)    #xxxxxx    colorname         Specifies   the color of text            face         font_family         Specifies   the font of text            size         number         Specifies   the size of text                 Example:-    <html>   <head>    <title>Index | Font Tag </title>      <head>   <body bgcolor="lightblue" text="black">   <!-- example of formatting tags  -->   <h2>Text formatting Tags</h2>   <b> - Bold text</b><br>   <strong> - Important text</strong><br>   <i> - Italic text</i><br>   <e...