Computer Applications
What is wrong in the following coding ?
<HEAD> <my web page >
<TITLE> Welcome to My Web Page
</HEAD>
</TITLE>
Answer
The <TITLE> tag must be entered between the opening and closing <HEAD> tags. Since "my web page" is not a tag, it should not be enclosed between angle brackets and should be written inside the <BODY> tag.
The correct code is as follows:
<HEAD>
<TITLE> Welcome to My Web Page </TITLE>
<BODY>
my web page
</BODY>
</HEAD>
Related Questions
The default alignment of text is …………….. , default text color is …………….. and the default background color is …………….. .
Give the coding for giving the heading 'PACE Computer Education' of
<H1>tag, font style as Comic Sans MS, text color as blue. Body text color as red, background as green, alignment as center, font style of body text as Brush script, size = 15. The text for body is as follows :Education is the
ability to listen to almost
anything without
losing your temper
or your
self confidence.
And so is Democracy and Maturity too.What is wrong in the following coding ?
<FONT name = "Arial", type = "Bold" size = 3>What is wrong in the following coding ?
<FONT face = comic sans ms color = Red>