Advertisements
Advertisements
Question
What is the wrong in the following coding?
<html>
<my web page>
<title> Welcome to my web page </head>
</title>
Short Note
Solution
- Beginning of head section with <head> is missing.
- </title> must be placed before </head>
- No Body section
- End of </html> is missing
- Title content and Body contents are misplaced.
The Correct code:
<html>
<head>
<title> my webpage </title>
<head>
<body>
Welcome to my webpage
</body>
</html>
shaalaa.com
HTML Attributes
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which of the following is a special word used inside tag to specify additional information to the tag?
HTML tags should be specified within:
Which section of the browser window displays the main contents?
In HTML, colours are represented as ______.
Which of the following symbol is used to prefix with hexadecimal value representing colour in HTML?
How do you include an image as your web page background?
Explain the attributes available with <body> tag.
What are the attributes available in <html> tags?