Hey Jenny, sorry no one got back to your post.. I must have missed it.
The validator is confused because it couldn't find a closing div tag.
You have an open div tag within the main content area of your page, which has no closing tag:
- Code: Select all
<h1><strong>Condensed Matter & Materials Physics (CMMP) <br /> and Nanotechnology </strong></h1>
<div align="left">
The message 'end tag for "div" omitted, but OMITTAG NO was specified.' just means that it couldn't find a closing div tag once it reached the bottom of the page.
I visualize the validator's method of validating tags as a stack of plates at a buffet line - At the start the stack of plates is empty, and every time a tag is opened a plate is added to the stack, and every time a tag is closed a plate is removed from the stack. Ideally when it reaches the end of your page there should be no more plates on the stack... empty/valid! But there was one plate left on the stack, the <div> tag which was a main container div opened outside your editable region. Unfortunately the validator has no idea which specific plate was missing it's matching closing div, all it knows is the first one opened is still on the stack.
Hope that analogy helps people understand a little more about how the validator works, and why it's messages can be confusing at times.
Good luck!