CBSE Class 10 Computer Applications Question 157 of 176

HTML I — Basic HTML Elements — Question 30

Back to all questions
30
Question

Question 18(x)

What is wrong in the following coding ?

<HTML> 
<HEAD> 
<TITLE> New Page 
</HEAD> 
</TITLE> 
</HTML> 
Answer

The <TITLE> tag must be entered between the opening and closing <HEAD> tags.

The correct code is as follows:

<HTML> 
<HEAD> 
<TITLE> New Page 
</TITLE> 
</HEAD>
</HTML>