Forum Moderators: open
The tag name: "embed" Not found in currently active versions.
Is that correct? Seems very strange to me that the embed tag would not validate. Is there another tag which is used in xhtml for this? Or a different syntax?
Thanks for any help-
Matt..
Nick
So if you must stick with the <embed> tag AND validate, from what I've read (never done it) your recourse is including an ATTLIST declaration [xmlwriter.net] with the DTD, before the HTML tag.
Something like this --
<!DOCTYPE html .... [
<!ELEMENT embed EMPTY>
<!ATTLIST embed
src CDATA #IMPLIED >
]>
<html>...</html>
Nick - you beat me to it!
I also read this article on the macromedia site -
[macromedia.com...]
It explains why the embed tag is used when inserting flash content.
Thanks again for all your help!