今天验证了一下我的网页,有N个错误

,有的错误很奇怪,不知道原因,请高手帮一下。
1。
Line 23, column 6: end tag for "head" which is not finished
</head>
Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element (e.g. 'ul') which requires a child element (e.g. 'li') that you did not include. Hence the parent element is "not finished", not complete.
但我的<head></head>封闭了啊?