KnowledgeBoat Logo
|

Computer Applications

What is wrong in the following coding ?

<P Font face = "Arial" color = "Blue">

HTML Intro

10 Likes

Answer

The paragraph <P> tag and the font <FONT> tag should be written in separate angle brackets as both are different tags.

The correct code is as follows:

<P> <FONT face = "Arial" color = "Blue">

Answered By

6 Likes


Related Questions