11 Answers
New AnswerRoyal You're getting there! it took me a while to get the structure down as well when I was learning. I recommend you go back to the HTML lesson 2.1 to refresh memory about the HTML structure.
Royal Yout html structure is not proper. 1 - Body tag is missing 2 - head tag can't be inside body tag 3 - didn't close ul 4 - didn't close p tag Structure of HTML <html> <head> //It will not display on browser </head> <body> //Visual part which is display on browser </body> </html>
Royal Those contents which are display on browser should go inside body tag. Inside head tag, meta, style, javascript, link tag comes And other tags go inside body tag
Sololearn Inc.
535 Mission Street, Suite 1591Send us a message