Errors found while checking this document as XHTML 1.0 Transitional!

Result: 18 Errors, 2 warning(s)
:
Modified:Sat, 26 May 2012 17:34:52 GMT
Server:Apache
Size:5772
Content-Type:text/html
: utf-8
: XHTML 1.0 Transitional
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

↑ Top

Validation Output: 18 Errors

  1. Error Line 8, Column 96: end tag for "link" omitted, but OMITTAG NO was specified
    …cut icon" type="image/x-icon" href="http://www.sydpixel.com/images/favico.ico">

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  2. Info Line 8, Column 1: start tag was here
    <link rel="shortcut icon" type="image/x-icon" href="http://www.sydpixel.com/ima…
  3. Error Line 121, Column 21: required attribute "type" not specified
    <script src="IE8.js">IE7_PNG_SUFFIX=".png";</script>

    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>.

  4. Error Line 265, Column 19: end tag for element "li" which is not open
                  </li>

    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  5. Error Line 269, Column 28: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
                  <li> <a href=http://www.hongkiat.com/blog/27-must-have-starter-ki…

  6. Error Line 269, Column 34: NET-enabling start-tag not immediately followed by null end-tag
                  <li> <a href=http://www.hongkiat.com/blog/27-must-have-starter-ki…

    This error may occur when there is a mistake in how a self-closing tag is closed, e.g '.../ >'. The proper syntax is '... />' (note the position of the space).

  7. Error Line 269, Column 132: end tag for element "a" which is not open
    …-must-have-starter-kits-for-web-designers/">Must have web starter kits</a></li>

    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  8. Warning Line 326, Column 80: character "<" is the first character of a delimiter but occurred as data
    …_twitter"><a href="http://twitter.com/<?php echo get_theme_mod('twitter_id'); …

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  9. Warning Line 329, Column 86: character "<" is the first character of a delimiter but occurred as data
    …ook"><a href="http://www.facebook.com/<?php echo get_theme_mod('facebook_id');…

    This message may appear in several cases:

    • You tried to include the "<" character in your page: you should escape it as "&lt;"
    • You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
    • Another possibility is that you forgot to close quotes in a previous tag.
  10. Error Line 349, Column 9: end tag for "ul" which is not finished
    				</ul>

    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 which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

  11. Error Line 362, Column 234: document type does not allow element "p" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    …oals you desire for business growth.<p> <a href="/contact/">Hire me</a></p></h…

    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>").

  12. Error Line 371, Column 140: document type does not allow element "p" here; assuming missing "li" start-tag
    … with <a href="http://expressionengine.com/">ExpressionEngine</a> .</p></li><p>

  13. Error Line 372, Column 14: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    						</p><li><h3>Want a killer blog?</h3><p>

    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>").

  14. Error Line 375, Column 18: end tag for "li" omitted, but OMITTAG NO was specified
    <p>&nbsp;</p></ul>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  15. Info Line 371, Column 138: start tag was here
    … with <a href="http://expressionengine.com/">ExpressionEngine</a> .</p></li><p>
  16. Error Line 379, Column 86: end tag for element "li" which is not open
    …17;t it be nice to have the web guy at your office for a full week?</p></li><p>

    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  17. Error Line 427, Column 63: end tag for "br" omitted, but OMITTAG NO was specified
              <strong>Please type verification image:</strong><br>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  18. Info Line 427, Column 59: start tag was here
              <strong>Please type verification image:</strong><br>
  19. Error Line 434, Column 54: end tag for element "p" which is not open
                             <strong>Message:</strong></p>

    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

  20. Error Line 439, Column 20: end tag for "br" omitted, but OMITTAG NO was specified
                   <br>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  21. Info Line 439, Column 16: start tag was here
                   <br>
  22. Error Line 467, Column 57: end tag for "a" omitted, but OMITTAG NO was specified
    		<li><a href="http://codeigniter.com/">Code Igniter</li>

    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".

  23. Info Line 467, Column 7: start tag was here
    		<li><a href="http://codeigniter.com/">Code Igniter</li>
  24. Error Line 509, Column 128: required attribute "alt" not specified
    …w.sydpixel.com//images/sydpixel/icons/nav-download.png" id="download" /> </div>

    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>.

  25. Error Line 560, Column 63: end tag for element "p" which is not open
     Design by: <a href="http://www.sydpixel.com">SydPixel</a> </p>

    The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

    If this error occurred in a script section of your document, you should probably read this FAQ entry.

↑ Top