Reputation: 613
I am using following code for plugin youtube video in HTML.
<param name="movie" value="https://www.youtube.com/watch?v=451l9lenoOs&hd=1"></param>
<embed src="https://www.youtube.com/watch?v=451l9lenoOs&hd=1" type="application/x-shockwave-flash" />
please help me find out solution .
Upvotes: 0
Views: 27
Reputation: 441
Use iframe instead embed(old) tag.
<iframe width="560" height="315" src="//www.youtube.com/embed/451l9lenoOs" frameborder="0" allowfullscreen></iframe>
copy from here(share -> source code):
Upvotes: 1