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&up_channel=aaaa&synd=open&w=320&h=390&title=&border=%23ffffff%7C3px%2C1px+solid+%23999999&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?