Computer Science, asked by siddhesh20079, 3 months ago

. <Font Face="red"> Is this a correct attribute. *



Yes

No

Answers

Answered by vijaykisan
0

Answer:

Font Face="red"> Is this a correct attribute. *

Yes

Answered by anindyaadhikari13
2

Answer:

  • < font face="red" > - This is not the correct attribute.

Explanation:

To specify the font color of any text in web page, the color attribute is used. Correct syntax is,

< font color="red" >Content...</ font >

We can also specify the font color using CSS properties. For example,

< p class="x" >Hello< /p >

Now, if we add the given CSS códe, then, the color of the text becomes red.

p.x {

color: red;

}

p.x formats all the < p > elements whose class name is x.

Similar questions