Embed a Youtube Channel into HTML with iFrame

html, iframe, youtube

Solution

The problem seems to be induced by this URL:http://www.youtube.com/aaaa.

I tried some other URLs and it works.

You can try some URLs easily here.

Try this:

  <script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/youtube.xml&amp;up_channel=aaaa&amp;synd=open&amp;w=320&amp;h=390&amp;title=&amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;output=js"></script>

Problem

I'm trying to embed a Youtube channel into a HTML page. For example I take this channel address: http://www.youtube.com/aaaa I used this code: ``` <html> <head> </head> <body> <iframe src="http://www.youtube.com/aaaa"></iframe> </body> </html> ``` The problem is that it doesn't work. I tried with another site, and it works. What can be the problem?

Original source