Line 1, Column 1: no document type declaration; implying "<!DOCTYPE HTML SYSTEM>" <html> ✉ The checked page did not contain a document type ("DOCTYPE") declaration. The Validator has tried to validate with a fallback DTD, but this is quite likely to be incorrect and will generate a large number of incorrect error messages. It is highly recommended that you insert the proper DOCTYPE declaration in your document -- instructions for doing this are given above -- and it is necessary to have this declaration before the page can be declared to be valid. Line 4, Column 67: an attribute value literal can occur in an attribute specification list only after a VI delimiter <meta http-equiv="Content-Type" content="text/html; charset="UTF-8"> ✉ Have you forgotten the "equal" sign marking the separation between the attribute and its declared value? Typical syntax is attribute="value" . Line 5, Column 49: document type does not allow element "META" here <meta name="description" content="Videos - Home"> ✉ 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). Line 6, Column 100: document type does not allow element "META" here … content="Videos, Videos,Youtube Videos,watched now,recent videos,most viewed"> ✉ 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). Line 7, Column 53: NET-enabling start-tag requires SHORTTAG YES <link rel="icon" type="image/ico" href="favicon.ico"/> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 7, Column 53: document type does not allow element "LINK" here <link rel="icon" type="image/ico" href="favicon.ico"/> ✉ 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). Line 9, Column 7: required attribute "TYPE" not specified <style> ✉ 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> . Line 9, Column 7: document type does not allow element "STYLE" here <style> ✉ 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). Line 1177, Column 7: required attribute "TYPE" not specified <style> ✉ 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> . Line 1177, Column 7: document type does not allow element "STYLE" here <style> ✉ 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). Line 1239, Column 189: end tag for element "A" which is not open …ges/close_pop.png" class="btn_close" title="Close Window" alt="Close" /></a>'); ✉ 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. Line 1252, Column 43: end tag for element "DIV" which is not open …$('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of t… ✉ 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. Line 1282, Column 7: end tag for element "HEAD" which is not open </head> ✉ 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. Line 1293, Column 54: required attribute "ALT" not specified <img src="userdata/homepagelogo.gif" border="0"></a> ✉ 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> . Line 1301, Column 62: cannot generate system identifier for general entity "languageid" …o.cn/video/index.php?page=index/index&languageid=1"><img align="absmiddle" bor… ✉ An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs". Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and æ are different characters. If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem. Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed. Line 1301, Column 62: general entity "languageid" not defined and no default entity …o.cn/video/index.php?page=index/index&languageid=1"><img align="absmiddle" bor… ✉ This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details. Line 1301, Column 72: reference to entity "languageid" for which no system identifier could be generated …/index.php?page=index/index&languageid=1"><img align="absmiddle" border="0" c… ✉ This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details. Line 1301, Column 61: entity was defined here …so.cn/video/index.php?page=index/index&languageid=1"><img align="absmiddle" bo… Line 1301, Column 97: value of attribute "ALIGN" cannot be "ABSMIDDLE"; must be one of "TOP", "MIDDLE", "BOTTOM", "LEFT", "RIGHT" …ex&languageid=1"><img align="absmiddle" border="0" class="box" src="userdata/… ✉ The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected ” attribute must be either minimized as “selected ” or spelled out in full as “selected="selected" ”; a value like “selected="true" ” is not allowed. Line 1301, Column 184: required attribute "ALT" not specified …/1/Thumb_english.jpg" title="English"></a> <a href="https://eastso.cn/v… ✉ 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> . Line 1301, Column 266: reference to entity "languageid" for which no system identifier could be generated …/index.php?page=index/index&languageid=5"><img align="absmiddle" border="0" s… ✉ This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details. Line 1301, Column 61: entity was defined here …so.cn/video/index.php?page=index/index&languageid=1"><img align="absmiddle" bo… Line 1301, Column 291: value of attribute "ALIGN" cannot be "ABSMIDDLE"; must be one of "TOP", "MIDDLE", "BOTTOM", "LEFT", "RIGHT" …ex&languageid=5"><img align="absmiddle" border="0" src="userdata/languages/5/… ✉ The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected ” attribute must be either minimized as “selected ” or spelled out in full as “selected="selected" ”; a value like “selected="true" ” is not allowed. Line 1301, Column 366: required attribute "ALT" not specified …/5/Thumb_spanish.jpg" title="Spanish"></a> <a href="https://eastso.cn/v… ✉ 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> . Line 1301, Column 448: reference to entity "languageid" for which no system identifier could be generated …/index.php?page=index/index&languageid=6"><img align="absmiddle" border="0" s… ✉ This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details. Line 1301, Column 61: entity was defined here …so.cn/video/index.php?page=index/index&languageid=1"><img align="absmiddle" bo… Line 1301, Column 473: value of attribute "ALIGN" cannot be "ABSMIDDLE"; must be one of "TOP", "MIDDLE", "BOTTOM", "LEFT", "RIGHT" …ex&languageid=6"><img align="absmiddle" border="0" src="userdata/languages/6/… ✉ The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected ” attribute must be either minimized as “selected ” or spelled out in full as “selected="selected" ”; a value like “selected="true" ” is not allowed. Line 1301, Column 546: required attribute "ALT" not specified … src="userdata/languages/6/Thumb_french.jpg" title="French"></a> </span> ✉ 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> . Line 1328, Column 28: there is no attribute "HEIGHT" <table width="100%" height="90%" border="0"> ✉ 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. Line 1331, Column 4: NET-enabling start-tag requires SHORTTAG YES <br/> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1346, Column 79: NET-enabling start-tag requires SHORTTAG YES …td><input type="submit" name="submitt" value="Login" class="formbutton" /></td> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1402, Column 29: there is no attribute "BACKGROUND" <td width="10" background="images/letfside.gif"></td> ✉ 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. Line 1407, Column 11: ID "TAB" already defined <li id="tab"><a href="https://eastso.cn/video/index.php?page=video/video/most… ✉ 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). Line 1406, Column 11: ID "TAB" first defined here <li id="tab"><a href="https://eastso.cn/video/index.php?page=">Home</a></li> Line 1408, Column 11: ID "TAB" already defined <li id="tab"><a href="https://eastso.cn/video/index.php?page=category/videos"… ✉ 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). Line 1406, Column 11: ID "TAB" first defined here <li id="tab"><a href="https://eastso.cn/video/index.php?page=">Home</a></li> Line 1409, Column 11: ID "TAB" already defined <li id="tab"><a href="https://eastso.cn/video/index.php?page=user/channels">C… ✉ 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). Line 1406, Column 11: ID "TAB" first defined here <li id="tab"><a href="https://eastso.cn/video/index.php?page=">Home</a></li> Line 1414, Column 63: ID "SEARCH" already defined … <input name="search" type="text" id="search" value="" size="45" class="inputb… ✉ 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). Line 1398, Column 40: ID "SEARCH" first defined here … }</script><form name="search" id="search" enctype="multipart/form-data" me… Line 1439, Column 5: NET-enabling start-tag requires SHORTTAG YES <br /> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1456, Column 55: required attribute "ALT" not specified <img src="images/bullet-1.gif" height="6" width="4"> </td> ✉ 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> . Line 1459, Column 18: there is no attribute "HEIGHT" <tr height="40"> ✉ 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. Line 1477, Column 55: required attribute "ALT" not specified <img src="images/bullet-1.gif" height="6" width="4"> ✉ 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> . Line 1485, Column 55: required attribute "ALT" not specified <img src="images/bullet-1.gif" height="6" width="4"> ✉ 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> . Line 1493, Column 55: required attribute "ALT" not specified <img src="images/bullet-1.gif" height="6" width="4"> ✉ 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> . Line 1501, Column 55: required attribute "ALT" not specified <img src="images/bullet-1.gif" height="6" width="4"> ✉ 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> . Line 1537, Column 114: required attribute "ALT" not specified …tp://i2.ytimg.com/vi/qmPTMNBIz0o/default.jpg' class="public_video_cover"></img> ✉ 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> . Line 1537, Column 120: end tag for element "IMG" which is not open …tp://i2.ytimg.com/vi/qmPTMNBIz0o/default.jpg' class="public_video_cover"></img> ✉ 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. Line 1545, Column 53: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag <table cellpadding="0"cellspacing="0" border="0"> ✉ 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>"). Line 1548, Column 42: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1548, Column 84: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1548, Column 126: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1548, Column 168: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1548, Column 210: required attribute "ALT" not specified …src="images/greystar.gif" border="0"><img src="images/greystar.gif" 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> . Line 1555, Column 8: end tag for "A" omitted, but its declaration does not permit this </td> ✉ The next message, "start tag was here " points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. You forgot to close a tag, or you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
Line 1535, Column 91: start tag was here …="smallbox" width="25%" valign="top" ><a href="https://eastso.cn/video/index.p… Line 1558, Column 87: required attribute "ALT" not specified … <img border='0' src='images/noimages.jpg' class="public_video_cover"></img> ✉ 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> . Line 1558, Column 93: end tag for element "IMG" which is not open … <img border='0' src='images/noimages.jpg' class="public_video_cover"></img> ✉ 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. Line 1566, Column 53: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag <table cellpadding="0"cellspacing="0" border="0"> ✉ 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>"). Line 1569, Column 42: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1569, Column 84: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1569, Column 126: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1569, Column 168: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1569, Column 210: required attribute "ALT" not specified …src="images/greystar.gif" border="0"><img src="images/greystar.gif" 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> . Line 1576, Column 8: end tag for "A" omitted, but its declaration does not permit this </td> ✉ The next message, "start tag was here " points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. You forgot to close a tag, or you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
Line 1556, Column 80: start tag was here …="smallbox" width="25%" valign="top" ><a href="https://eastso.cn/video/index.p… Line 1616, Column 105: required attribute "ALT" not specified …tp://i2.ytimg.com/vi/qmPTMNBIz0o/default.jpg' class="public_video_cover"></img> ✉ 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> . Line 1616, Column 111: end tag for element "IMG" which is not open …tp://i2.ytimg.com/vi/qmPTMNBIz0o/default.jpg' class="public_video_cover"></img> ✉ 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. Line 1622, Column 20: NET-enabling start-tag requires SHORTTAG YES <br/> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1624, Column 53: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag <table cellpadding="0"cellspacing="0" border="0"> ✉ 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>"). Line 1627, Column 42: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1627, Column 84: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1627, Column 126: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1627, Column 168: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1627, Column 210: required attribute "ALT" not specified …src="images/greystar.gif" border="0"><img src="images/greystar.gif" 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> . Line 1633, Column 13: NET-enabling start-tag requires SHORTTAG YES </table><br /> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1634, Column 9: end tag for "A" omitted, but its declaration does not permit this </td> ✉ The next message, "start tag was here " points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. You forgot to close a tag, or you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
Line 1614, Column 5: start tag was here <a href="https://eastso.cn/video/index.php?page=video/views/1/most_viewed&a… Line 1639, Column 78: required attribute "ALT" not specified … <img border='0' src='images/noimages.jpg' class="public_video_cover"></img> ✉ 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> . Line 1639, Column 84: end tag for element "IMG" which is not open … <img border='0' src='images/noimages.jpg' class="public_video_cover"></img> ✉ 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. Line 1645, Column 20: NET-enabling start-tag requires SHORTTAG YES <br/> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1647, Column 53: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag <table cellpadding="0"cellspacing="0" border="0"> ✉ 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>"). Line 1650, Column 42: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1650, Column 84: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1650, Column 126: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1650, Column 168: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1650, Column 210: required attribute "ALT" not specified …src="images/greystar.gif" border="0"><img src="images/greystar.gif" 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> . Line 1656, Column 13: NET-enabling start-tag requires SHORTTAG YES </table><br /> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1657, Column 9: end tag for "A" omitted, but its declaration does not permit this </td> ✉ The next message, "start tag was here " points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. You forgot to close a tag, or you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
Line 1637, Column 5: start tag was here <a href="https://eastso.cn/video/index.php?page=video/views/2/most_viewed&a… Line 1689, Column 78: required attribute "ALT" not specified … <img border='0' src='images/noimages.jpg' class="public_video_cover"></img> ✉ 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> . Line 1689, Column 84: end tag for element "IMG" which is not open … <img border='0' src='images/noimages.jpg' class="public_video_cover"></img> ✉ 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. Line 1695, Column 8: NET-enabling start-tag requires SHORTTAG YES <br/> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1697, Column 53: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag <table cellpadding="0"cellspacing="0" border="0"> ✉ 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>"). Line 1700, Column 42: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1700, Column 84: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1700, Column 126: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1700, Column 168: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1700, Column 210: required attribute "ALT" not specified …src="images/greystar.gif" border="0"><img src="images/greystar.gif" 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> . Line 1706, Column 13: NET-enabling start-tag requires SHORTTAG YES </table><br /> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1707, Column 9: end tag for "A" omitted, but its declaration does not permit this </td> ✉ The next message, "start tag was here " points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. You forgot to close a tag, or you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
Line 1687, Column 9: start tag was here <a href="https://eastso.cn/video/index.php?page=video/views/2/most_rece… Line 1711, Column 105: required attribute "ALT" not specified …tp://i2.ytimg.com/vi/qmPTMNBIz0o/default.jpg' class="public_video_cover"></img> ✉ 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> . Line 1711, Column 111: end tag for element "IMG" which is not open …tp://i2.ytimg.com/vi/qmPTMNBIz0o/default.jpg' class="public_video_cover"></img> ✉ 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. Line 1717, Column 8: NET-enabling start-tag requires SHORTTAG YES <br/> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1719, Column 53: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag <table cellpadding="0"cellspacing="0" border="0"> ✉ 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>"). Line 1722, Column 42: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1722, Column 84: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1722, Column 126: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1722, Column 168: required attribute "ALT" not specified …g src="images/greystar.gif" border="0"><img src="images/greystar.gif" border="… ✉ 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> . Line 1722, Column 210: required attribute "ALT" not specified …src="images/greystar.gif" border="0"><img src="images/greystar.gif" 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> . Line 1728, Column 13: NET-enabling start-tag requires SHORTTAG YES </table><br /> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value. Line 1729, Column 9: end tag for "A" omitted, but its declaration does not permit this </td> ✉ The next message, "start tag was here " points to the particular instance of the tag in question); the positional indicator points to where the validator expected you to close the tag. You forgot to close a tag, or you used something inside this tag that was not allowed, and the validator is complaining that the tag should be closed before such content can be allowed.
Line 1709, Column 9: start tag was here <a href="https://eastso.cn/video/index.php?page=video/views/1/most_rece… Line 1753, Column 96: NET-enabling start-tag requires SHORTTAG YES …enter" >Copyright © 2009-2015 Inoutscripts.com. All Rights Reserved.<br /> ✉ For the current document, the validator interprets strings like <FOO /> according to legacy rules that break the expectations of most authors and thus cause confusing warnings and error messages from the validator. This interpretation is triggered by HTML 4 documents or other SGML-based HTML documents. To avoid the messages, simply remove the "/" character in such contexts. NB: If you expect <FOO /> to be interpreted as an XML-compatible "self-closing" tag, then you need to use XHTML or HTML5. This warning and related errors may also be caused by an unquoted attribute value containing one or more "/". Example: <a href=http://w3c.org>W3C</a> . In such cases, the solution is to put quotation marks around the value.
|