Computer Applications

What is wrong in the following coding ?

<BASEFONT SIZE = 5> 
<BODY> Text with New format 
</BODY>

HTML Intro

12 Likes

Answer

<BASEFONT> tag should be inside the <BODY> tag.

The correct code is as follows:

<BODY>
<BASEFONT SIZE = 5> 
Text with New format 
</BODY>

Answered By

4 Likes


Related Questions