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
What is wrong in the following coding ?
<P Font face = "Arial" color = "Blue">What is wrong in the following coding ?
<Body Margin Top = 60 Left = 75> Text with changed margin </Body>What is wrong in the following coding ?
<HTML> <HEAD> <TITLE> New Page </HEAD> </TITLE> </HTML>Differentiate between
<TITLE>and<HEAD>tags.