This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Attempting to validate the site produces the error: Line 112 column 3: end tag for element "P" which is not open. The element IS open. The code has been checked by 3 different people to be correct and it contains ZERO problems and yet the validator still seems to blindly insist there is a problem. Looking at the parse tree clearly shows that the <p> tag is being improperly read.
Created attachment 426 [details] Origional page source on which the report is based. This is the origional page source upon which the report is based.
The p element cannot contain other block level elements ( see http://www.w3.org/TR/html4/struct/text.html#h-9.3.1 ) so in this case the validator is correct. A possible fix would be to remove the p and change the opening table tag to: <table class='table center' cellspacing="0"> -> INVALID