This code will add YOUTUBE videos to you HTML pages.
<html>
<body>
<h2>abhishek kumar rathur</h2>
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/rxUm-2x-2dM"/>
<param name="wmode" value="transparent" />
<param name="allowFullScreen" value="true" />
<embed src="http://www.youtube.com/v/rxUm-2x-2dM"
type="application/x-shockwave-flash"
wmode="transparent" width="425" height="350"
allowFullScreen="true">
</embed>
</object>
</body>
</html>
The above code will embed a you tube video to your html page. The attributes, value and src of param with name movie and embed tags respectively holds the url to the video, which is being embedded. The last segment of the url is the video ID (which is used to identify a video). The ID in the following example is rxUm-2x-2dM.
OutPut:-
Write the above given code in a notepad save it as xyz.html ,it will create a webpage that is a HTML page ,double click that xyz.html page ,wait for some time ,video will appear in your HTML page.
To play the video ,you have to host that page.
<html>
<body>
<h2>abhishek kumar rathur</h2>
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/rxUm-2x-2dM"/>
<param name="wmode" value="transparent" />
<param name="allowFullScreen" value="true" />
<embed src="http://www.youtube.com/v/rxUm-2x-2dM"
type="application/x-shockwave-flash"
wmode="transparent" width="425" height="350"
allowFullScreen="true">
</embed>
</object>
</body>
</html>
The above code will embed a you tube video to your html page. The attributes, value and src of param with name movie and embed tags respectively holds the url to the video, which is being embedded. The last segment of the url is the video ID (which is used to identify a video). The ID in the following example is rxUm-2x-2dM.
OutPut:-
Write the above given code in a notepad save it as xyz.html ,it will create a webpage that is a HTML page ,double click that xyz.html page ,wait for some time ,video will appear in your HTML page.
To play the video ,you have to host that page.
Thank you for the upload...it has helped me a lot :)
ReplyDelete