Computer Applications

What is wrong in the following coding ?

<FONT name = "Arial", 
type = "Bold" size = 3>

HTML Intro

8 Likes

Answer

The <FONT> tag has three attributes :

  1. face — It defines the font type
  2. color — It sets the color of font
  3. size — It sets the size of font

Type attribute is not used with <FONT> tag. To make the text bold, we use the <B> or <STRONG> tag.

The correct code is as follows:

<FONT face = "Arial" size = "3">

Answered By

3 Likes


Related Questions