Advertisements
Advertisements
प्रश्न
What is the wrong in the following coding?
<html>
<my web page>
<title> Welcome to my web page </head>
</title>
टीपा लिहा
उत्तर
- 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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
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?