QUESTION IMAGE
Question
warm-up: debugging html structure
what is wrong with the following code?
- </p> hello world </> *
o missing content
o missing body tag
o missing both closing and opening tag
o missing closing tag
In HTML, tags should be properly opened and closed. Here, the <p> (paragraph) tag is missing its opening <p> tag (only has </p> which is a closing tag) and also the <i> (italic) tag is missing its closing </i> tag (only has <i> as an opening - like structure but not properly closed as per the code shown). So, it's missing both closing and opening tags in a proper sense considering the overall tag - pair integrity.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
Missing both closing and opening tag