vote up 2 vote down star

Is there a way to embed a YouTube video while still staying standards compliant (XHTML 1.0 Strict)?

Thanks in advance.

flag

2 Answers

vote up 5 vote down check

Flash Satay:

http://www.alistapart.com/articles/flashsatay

link|flag
vote up 0 vote down

+1 Andy Hume

Was just about to post that. FYI from the article this works in Firefox, depending on your support needs:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title>Testing</title></head>
<body>
<div>
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/2pNTrYd-4FQ&amp;hl=en&amp;fs=1" width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/2pNTrYd-4FQ&amp;hl=en&amp;fs=1" />
</object>
</div>

</body>
</html>

Make sure to escape all ampersands and I don't know whether it was just because I was trying to validate a page with just the object on but it complained that it needed to be surrounded with a div, paragraph or something...

I assume that object just can't come first in the markup.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.