Why Is It Possible To Add Text Inside The Head Section
Why does the text inside a head section of a HTML page get rendered in the DOM? According to MDN the head section should do the following: The HTML element provides general inf
Solution 1:
Text is not valid in the head
tag.
The error correction of the browser moves the text from the head
to the body
Content model:
If the document is an iframe srcdoc document or if title information is available from a higher-level protocol: Zero or more elements ofmetadata
content, of which no more than one is atitle
element and no more than one is abase
element.
Otherwise: One or more elements ofmetadata
content, of which exactly one is atitle
element and no more than one is abase
element.
Post a Comment for "Why Is It Possible To Add Text Inside The Head Section"