QUESTION IMAGE
Question
warm-up: debugging html structure
debug the following code?
1 <idoctype html>
2 <html>
3 <head>
4 <link rel=\stylesheet\ href=\style.css\>
5 <head>
6 <body>
missing <body>
missing <html>
missing <p>
missing <head>
Brief Explanations
In HTML, every opening tag should have a corresponding closing tag. The <head> tag in line 3 is opened but not closed properly. The correct closing tag for <head> is </head>.
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 </head>