CBSE Class 10 Computer Applications Question 156 of 176

HTML I — Basic HTML Elements — Question 29

Back to all questions
29
Question

Question 18(ix)

What is wrong in the following coding ?

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

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

The correct code is as follows:

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