Asked 1 years ago
20 May 2022
Views 560
shyam

shyam posted

html validator Error: End tag header seen, but there were open elements.

i getting the following error for the w3c validator test :


Error: End tag header seen, but there were open elements.
From line 825, column 7; to line 825, column 15


how do solve this problem with a validator?
Phpworker

Phpworker
answered May 20 '22 00:00

Error: End tag header seen, but there were open elements.
Error itself says that you have one <header> tag but no </header> element there
or may be its other element not closed so validator cant detect </header>
so you need to check all element between <header> ..</header>
Post Answer