Computer Applications

What is wrong in the following coding ?

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

HTML Intro

8 Likes

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> 

Answered By

5 Likes


Related Questions