KnowledgeBoat Logo
|

Computer Applications

What is wrong in the following coding ?

<FONT color = #345678

HTML Intro

13 Likes

Answer

All HTML tags are enclosed in angle brackets (< >). The values of attributes are given in double quotes (" ").

The correct code is as follows:

<FONT color = "#345678">

Answered By

5 Likes


Related Questions