I'm unable to validated my html code on w3 site validator. Please help me correct this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I'm unable to validated my html code on w3 site validator. Please help me correct this

End tag [div] seen, but there were open elements, If I am closing there are coming more errors. Another, problem is unclosed [ul] tag.

21st Aug 2020, 3:49 AM
john hembrom
john hembrom - avatar
5 Answers
0
https://shrib.com/#BlacksmithPlover4KPPAJ4 This is a read-only platform.
21st Aug 2020, 4:19 AM
john hembrom
john hembrom - avatar
0
If you know better platform for sync note-editing. Then, you can suggest
21st Aug 2020, 4:24 AM
john hembrom
john hembrom - avatar
0
Akash Agrawal I was validating in validator.w3.org site using Sublime text editor in my pc. Now it is solved. Code were working , but there were some tags error. Sololearn playground helped me. Thanks for your guidance.
21st Aug 2020, 4:30 AM
john hembrom
john hembrom - avatar
0
john hembrom If you wanted a list inside a list, You missed a closing li tag after the nested ul element. ----------- <ul> <li>Hello <ul> <li>Welcome</li> </ul> <!-- You missed the below closing li tag --> </li> </ul> ----------- Check and correct your code. It should work
21st Aug 2020, 4:32 AM
Hanuma Ukkadapu
Hanuma Ukkadapu - avatar
0
Yes! Hanuma Ukkadapu it worked. I added one item <li>one item</li> between two closed </ul>.
21st Aug 2020, 4:36 AM
john hembrom
john hembrom - avatar