How to embed a youtube video using html?

Christopher

New member
I need to embed a youtube video using html. I edit the html using notepad. It works when I use a url where the video is full screen so to speak. Like this: http://www.youtube.com/v/GwQMnpUsj8I&hl=…
But when the url is like this:http://www.youtube.com/watch?v=QCQI7bmNpQk&eurl=http%3A%2F%2Fwww.youtube.com%2Fuser%2Fmikemasseyshowhorses&feature=player_profilepage
It does not work.

How do I make the url of the second video like the first?

Here is my code if you are wondering





"<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/watch?v=QC…
</param><param name="allowFullScreen" value="true">
</param><param name="allowscriptaccess" value="always">
</param><embed src=http:http://www.youtube.com/watch?v=…

type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344">
</embed></object>"




please help
 
Hi friends!

"<object width="425" height="344"><embed>
<param name="movie" value="http://www.youtube.com/watch?v=QC…
</param><param name="allowFullScreen" value="true">
</param><param name="allowscriptaccess" value="always">
</param><embed src=http:http://www.youtube.com/watch?v=…

type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344">
</embed></object>"


You can use this code because you closing the embed tag but no opening.

Have a nice day
 
Back
Top