нашел 36 ошибок. Привожу лог. Посмотрите пожалуйста - мне пока знаний не хватает, чтобы что-то увидеть существенное.
Validation Output: 36 Errors
1. Error Line 144, Column 43: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
<input type="hidden" name="Itemid" value=1 />
✉
2. Error Line 176, Column 172: required attribute "alt" not specified
…ories/foto/roamer.jpg" width="350" />Этот блог я обновляю по мере возможности
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
3. Error Line 274, Column 63: element "index" undefined. Did you mean "isindex" or "strike"?
…ght;"><em><span id="questext"><index>"Каждый выбирает для себя Женщину, Религ
✉
You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:
* incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
* by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
* by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
4. Error Line 275, Column 47: ID "questext" already defined
…="text-align: right;"><em><span id="questext"><index> Дьяволу служить или про
✉
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
5. Info Line 274, Column 46: ID "questext" first defined here
…e="text-align: right;"><em><span id="questext"><index>"Каждый выбирает для се
6. Error Line 275, Column 63: element "index" undefined. Did you mean "isindex" or "strike"?
…ght;"><em><span id="questext"><index> Дьяволу служить или пророку, каждый выб
✉
You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:
* incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
* by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
* by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
7. Error Line 433, Column 29: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
<div class="jcomments-links"><a class="readmore-link" href="/home/101-2009-11-10
✉
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
8. Error Line 434, Column 6: end tag for "p" omitted, but OMITTAG NO was specified
</div>
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
9. Info Line 432: start tag was here
><p>
10. Error Line 541, Column 135: document type does not allow element "link" here
…ss/uddemodule.css" type="text/css" /><div id='uddeim-module'><p class='uddeim
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
11. Error Line 594, Column 16: Attribute "onload" exists, but can not be used for this element.
<iframe onload="iFrameHeight()" id="blockrandom"
✉
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
12. Error Line 595, Column 8: syntax of attribute value does not conform to declared value
name=""
✉
The value of an attribute contained something that is not allowed by the specified syntax for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; the variant “selected=""” is not allowed.
13. Error Line 660, Column 245: required attribute "alt" not specified
…t+'" width="1" height="1" border="0">');
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
14. Error Line 660, Column 245: document type does not allow element "img" here
…t+'" width="1" height="1" border="0">');
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
15. Error Line 660, Column 246: end tag for "img" omitted, but OMITTAG NO was specified
…+'" width="1" height="1" border="0">');
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
16. Info Line 660, Column 16: start tag was here
document.write('<img src="http://alex.kindeev.ru/cnstats/cnt-combined.php?i=849&
17. Error Line 686, Column 85: required attribute "alt" not specified
…p" width="88" height="31" border="0">
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
18. Error Line 686, Column 86: end tag for "img" omitted, but OMITTAG NO was specified
…" width="88" height="31" border="…
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
19. Info Line 686: start tag was here
r<img src="http://alex.kindeev.ru/cnstats/cnts.php" width="88" height="31" border
20. Error Line 688, Column 105: required attribute "alt" not specified
…p" width="88" height="31" border="0">
✉
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
21. Error Line 688, Column 106: end tag for "img" omitted, but OMITTAG NO was specified
…" width="88" height="31" border="…
✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
22. Info Line 688: start tag was here
8<img src="/home/maestrof/public_html/alex.kindeev.ru/cnstats/cnts.php" width="88
23. Error Line 144, Column 42: XML Parsing Error: AttValue: " or ' expected
<input type="hidden" name="Itemid" value=1 />
✉
24. Error Line 144, Column 42: XML Parsing Error: attributes construct error
<input type="hidden" name="Itemid" value=1 />
✉
25. Error Line 144, Column 42: XML Parsing Error: Couldn't find end of Start Tag input line 144
<input type="hidden" name="Itemid" value=1 />
✉
26. Error Line 434, Column 6: XML Parsing Error: Opening and ending tag mismatch: p line 432 and div
</div>
✉
27. Error Line 441, Column 9: XML Parsing Error: Opening and ending tag mismatch: div line 412 and td
</td>
✉
28. Error Line 443, Column 7: XML Parsing Error: Opening and ending tag mismatch: td line 224 and tr
</tr>
✉
29. Error Line 444, Column 10: XML Parsing Error: Opening and ending tag mismatch: tr line 223 and table
</table>
✉
30. Error Line 445, Column 6: XML Parsing Error: Opening and ending tag mismatch: table line 222 and td
</td>
✉
31. Error Line 446, Column 5: XML Parsing Error: Opening and ending tag mismatch: td line 221 and tr
</tr>
✉
32. Error Line 483, Column 8: XML Parsing Error: Opening and ending tag mismatch: tr line 220 and table
</table>
✉
33. Error Line 487, Column 8: XML Parsing Error: Opening and ending tag mismatch: table line 172 and div
</div>
✉
34. Error Line 661, Column 9: XML Parsing Error: Opening and ending tag mismatch: img line 660 and script
</script><noscript><img src="http://alex.kindeev.ru/cnstats/cnt-combined.php?i=8
✉
35. Error Line 689, Column 6: XML Parsing Error: Opening and ending tag mismatch: img line 688 and div
</div>
✉
36. Error Line 693, Column 7: XML Parsing Error: Opening and ending tag mismatch: img line 686 and body
</body>
✉
37. Error Line 695, Column 7: XML Parsing Error: Opening and ending tag mismatch: script line 656 and html
</html>
✉
38. Error Line 695, Column 7: XML Parsing Error: Premature end of data in tag div line 155
</html>
✉
39. Error Line 695, Column 7: XML Parsing Error: Premature end of data in tag div line 119
</html>
✉
40. Error Line 695, Column 7: XML Parsing Error: Premature end of data in tag body line 110
</html>
✉
41. Error Line 695, Column 7: XML Parsing Error: Premature end of data in tag HTML line 4
</html>