What's wrong with the overall structure of the HTML tags shown below?
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Example Page">
<title>Find the Mistake</title>
<body>
<h1>Content models</h1>
<p> In HTML 4 there were only two main content models, block and inline level elements. <b>Block level</b> elements would stack on top of each other in normal document flow while <b>inline level</b> elements typically appear <em>within</em> the flow of text content.</p>
</body>
</head>
</html>
The body section is inside the head section |
||
The body section is inside the html section |
||
The title section is inside the head section |
||
The title section should come after body section |
wrong with the overall structure of the HTML tags shown given is The body section is inside the head section FIX <html lang="en"> <head> <meta charset="utf-8"> <meta name="description" content="Example Page"> <title>Find the Mistake</title> </head> <body> <h1>Content models</h1> <p> In HTML 4 there were only two main content models, block and inline level elements. <b>Block level</b> elements would stack on top of each other in normal document flow while <b>inline level</b> elements typically appear <em>within</em> the flow of text content.</p> </body> </html>
So, answer is option A
The body section is inside the head section |
Get Answers For Free
Most questions answered within 1 hours.