What is wrong with the following html code?
Answers
Answered by
0
Explanation:
You’ve omitted closing tag for <style> tag.
When you omit close tags, the browser decides where to place it. It probably places it at the end of the document which means everything you wrote inside body is part of <style> tag and will not be rendered.
Below is how your browser puts your code inside <style> element
Similar questions