missing </...>

Cause:

A closing tag is missing. Most HTML tags need to be closed.

Sample:

BAD     <head><title>hello</head>
GOOD    <head><title>hello</title></head>

References:

HTML specification: http://www.w3.org/TR/html4/