[VE][108] Error Message Feedback

Thanks for taking the time to read my e-mail.

I am trying to understand what each doctype is, and what is allowed. 
I used the HTML validator http://validator.w3.org/check and got some
errors.  I don't know why I got them.

Here are the errors.

Can you explain them to me, and tell me what I need to do to remedy the issues.

Is there a site that tells me what tags are allowed under what doctype?

Thanks again, I really appreciate it.


Brad

#

Line 26, column 11: there is no attribute "SRC"

<embed src="F:/Lisa/LisasNavBar.swf" quality="high" bgcolor="#6699cc" width="500

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.

✉
#

Line 26, column 45: there is no attribute "QUALITY"

....rc="F:/Lisa/LisasNavBar.swf" quality="high" bgcolor="#6699cc" width="500" hei

✉
#

Line 26, column 60: there is no attribute "BGCOLOR"

....asNavBar.swf" quality="high" bgcolor="#6699cc" width="500" height="100" name=

✉
#

Line 26, column 76: there is no attribute "WIDTH"

....ality="high" bgcolor="#6699cc" width="500" height="100" name="LisasNavBar" al

✉
#

Line 26, column 89: there is no attribute "HEIGHT"

....bgcolor="#6699cc" width="500" height="100" name="LisasNavBar" align="middle"

✉
#

Line 26, column 100: there is no attribute "NAME"

....699cc" width="500" height="100" name="LisasNavBar" align="middle" allowScript

✉
#

Line 26, column 120: there is no attribute "ALIGN"

....eight="100" name="LisasNavBar" align="middle" allowScriptAccess="sameDomain"

✉
#

Line 26, column 147: there is no attribute "ALLOWSCRIPTACCESS"

....ar" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwa

✉
#

Line 26, column 165: there is no attribute "TYPE"

.... allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginsp

✉
#

Line 26, column 209: there is no attribute "PLUGINSPAGE"

....ation/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashpl

✉
#

Line 26, column 254: element "EMBED" undefined

....www.macromedia.com/go/getflashplayer">

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), or by using
vendor proprietary extensions such as "<spacer>" or "<marquee>" (this
is usually fixed by using CSS to achieve the desired effect instead).

Received on Thursday, 4 November 2004 22:05:16 UTC