Errors found while checking this document as XHTML 1.0 Transitional!

Result: 46 Errors, 4 warning(s)
:
: iso-8859-1
: XHTML 1.0 Transitional
Root Element: html
Options

Help on the options is available.

↑ Top

Validation Output: 46 Errors

  1. Error Line 2, Column 1: Missing xmlns attribute for element html. The value should be: http://www.w3.org/1999/xhtml
    <html xml:lang="en" lang="en">

    Many Document Types based on XML need a mandatory xmlns attribute on the root element. For example, the root element for XHTML might look like:
    <html xmlns="http://www.w3.org/1999/xhtml">

  2. Warning Line 9, Column 97: character "&" is the first character of a delimiter but occurred as data
    …, club,Bridge Club,Bridgewebs - Web Sites for Bridge Clubs & Associations, " />

    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.
  3. Warning Line 10, Column 75: character "&" is the first character of a delimiter but occurred as data
    …cription" content="Bridgewebs - Web Sites for Bridge Clubs & Associations, " />

    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.
  4. Error Line 13, Column 12: there is no attribute "name"
    <META name="verify-v1" content="U1j4NJ4KfGYJXnjXV2M0AWy3xmnUTUXlfyqWAzDmuwI=" />

    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.

  5. Error Line 13, Column 32: there is no attribute "content"
    <META name="verify-v1" content="U1j4NJ4KfGYJXnjXV2M0AWy3xmnUTUXlfyqWAzDmuwI=" />

    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.

  6. Error Line 13, Column 80: element "META" undefined
    <META name="verify-v1" content="U1j4NJ4KfGYJXnjXV2M0AWy3xmnUTUXlfyqWAzDmuwI=" />

    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. Warning Line 14, Column 48: character "&" is the first character of a delimiter but occurred as data
    <title>Bridgewebs - Web Sites for Bridge Clubs & Associations</title>

    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.
  8. Error Line 19, Column 17: there is no attribute "language"
    <style language="JavaScript">

    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.

  9. Error Line 19, Column 29: required attribute "type" not specified
    <style language="JavaScript">

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

  10. Error Line 19, Column 29: document type does not allow element "style" here
    <style language="JavaScript">

    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 35, Column 72: required attribute "alt" not specified
        <td rowspan="3" width="10"><img src="/images/spacer.gif" width="10"></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>.

  12. Error Line 35, Column 77: end tag for "img" omitted, but OMITTAG NO was specified
        <td rowspan="3" width="10"><img src="/images/spacer.gif" width="10"></td>

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

  13. Info Line 35, Column 32: start tag was here
        <td rowspan="3" width="10"><img src="/images/spacer.gif" width="10"></td>
  14. Error Line 37, Column 30: the name and VI delimiter can be omitted from an attribute specification only if SHORTTAG YES is specified
        <td align="center" nowrap><img alt="" src="/bw/bridgewebs_logo.gif" border=…

    "VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.

    How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...

  15. Error Line 39, Column 72: required attribute "alt" not specified
        <td rowspan="3" width="10"><img src="/images/spacer.gif" width="10"></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>.

  16. Error Line 39, Column 77: end tag for "img" omitted, but OMITTAG NO was specified
        <td rowspan="3" width="10"><img src="/images/spacer.gif" width="10"></td>

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

  17. Info Line 39, Column 32: start tag was here
        <td rowspan="3" width="10"><img src="/images/spacer.gif" width="10"></td>
  18. Error Line 53, Column 49: "alt" is not a member of a group specified for any attribute
    …ass="page_panel" rowspan="5"><img alt src="/images/spacer.gif" width="5" borde…

  19. Error Line 53, Column 96: required attribute "alt" not specified
    …nel" rowspan="5"><img alt src="/images/spacer.gif" width="5" border="0" /></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>.

  20. Error Line 54, Column 49: "alt" is not a member of a group specified for any attribute
    …ass="page_panel" colspan="3"><img alt src="/images/spacer.gif" width="5" borde…

  21. Error Line 54, Column 96: required attribute "alt" not specified
    …nel" colspan="3"><img alt src="/images/spacer.gif" width="5" border="0" /></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>.

  22. Error Line 55, Column 49: "alt" is not a member of a group specified for any attribute
    …ass="page_panel" rowspan="5"><img alt src="/images/spacer.gif" width="5" borde…

  23. Error Line 55, Column 96: required attribute "alt" not specified
    …nel" rowspan="5"><img alt src="/images/spacer.gif" width="5" border="0" /></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>.

  24. Error Line 58, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/roundcorner_burgundy_otl.gif" border="0" /></td>

  25. Error Line 58, Column 73: required attribute "alt" not specified
        <td><img alt src="/images/roundcorner_burgundy_otl.gif" border="0" /></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>.

  26. Error Line 59, Column 31: "alt" is not a member of a group specified for any attribute
        <td width="100%"><img alt src="/images/spacer.gif" height="10" border="0" /…

  27. Error Line 59, Column 80: required attribute "alt" not specified
    …d width="100%"><img alt src="/images/spacer.gif" height="10" border="0" /></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>.

  28. Error Line 60, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/roundcorner_burgundy_otr.gif" border="0" /></td>

  29. Error Line 60, Column 73: required attribute "alt" not specified
        <td><img alt src="/images/roundcorner_burgundy_otr.gif" border="0" /></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>.

  30. Error Line 65, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/spacer.gif" width="8" border="0" /></td>

  31. Error Line 65, Column 65: required attribute "alt" not specified
        <td><img alt src="/images/spacer.gif" width="8" border="0" /></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>.

  32. Error Line 151, Column 5: 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 ">".

  33. Info Line 151, Column 1: start tag was here
    <br>
  34. Error Line 156, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/spacer.gif" width="10" border="0" /></td>

  35. Error Line 156, Column 66: required attribute "alt" not specified
        <td><img alt src="/images/spacer.gif" width="10" border="0" /></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>.

  36. Warning Line 159, Column 81: character "&" is the first character of a delimiter but occurred as data
    …r_title">Welcome to Bridgewebs - Web Sites for Bridge Clubs & Associations</td>

    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.
  37. Error Line 165, Column 15: required attribute "type" not specified
        <td><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>.

  38. Error Line 165, Column 15: document type does not allow element "style" here
        <td><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).

  39. Error Line 195, Column 33: required attribute "type" not specified
    <td class="page_box_home"><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>.

  40. Error Line 195, Column 33: document type does not allow element "style" here
    <td class="page_box_home"><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).

  41. Error Line 246, Column 91: document type does not allow element "table" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    …="col_b" cellspacing="0" cellpadding="4" width="90%" align="center" border="1">

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

  42. Error Line 271, Column 91: document type does not allow element "table" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    …="col_b" cellspacing="0" cellpadding="4" width="80%" align="center" border="1">

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

  43. Error Line 297, Column 91: document type does not allow element "table" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    …="col_b" cellspacing="0" cellpadding="4" width="70%" align="center" border="1">

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

  44. Error Line 314, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/spacer.gif" width="10" border="0" /></td>

  45. Error Line 314, Column 66: required attribute "alt" not specified
        <td><img alt src="/images/spacer.gif" width="10" border="0" /></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>.

  46. Error Line 320, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/roundcorner_burgundy_obl.gif" border="0" /></td>

  47. Error Line 320, Column 73: required attribute "alt" not specified
        <td><img alt src="/images/roundcorner_burgundy_obl.gif" border="0" /></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>.

  48. Error Line 321, Column 31: "alt" is not a member of a group specified for any attribute
        <td width="100%"><img alt src="/images/spacer.gif" height="10" border="0" /…

  49. Error Line 321, Column 80: required attribute "alt" not specified
    …d width="100%"><img alt src="/images/spacer.gif" height="10" border="0" /></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>.

  50. Error Line 322, Column 18: "alt" is not a member of a group specified for any attribute
        <td><img alt src="/images/roundcorner_burgundy_obr.gif" border="0" /></td>

  51. Error Line 322, Column 73: required attribute "alt" not specified
        <td><img alt src="/images/roundcorner_burgundy_obr.gif" border="0" /></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>.

  52. Error Line 325, Column 49: "alt" is not a member of a group specified for any attribute
    …ass="page_panel" colspan="3"><img alt src="/images/spacer.gif" width="5" borde…

  53. Error Line 325, Column 96: required attribute "alt" not specified
    …nel" colspan="3"><img alt src="/images/spacer.gif" width="5" border="0" /></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>.

↑ Top