How do you add a youtbe video in my blog (blogger )

Dou you know how can i add a video from youtube in my blog (blogger )

Yes, you can. If you log in to Blogger and go to your Dashboard there should be a link at the top that says “Create A Blog”. I think it is located next to “Help”.

thanx , but how can i add a video from youtube in my blog ?

To add a video copy the embed code from the video’s YouTube page in to the HTML window in Blogger.

For reasons I don’t understand, sometimes when you publish the code generates an error because the <embed> tag is not closed. If this happens, to fix it just add </embed> near the end of the code.

Here’s an example:

If your original YouTube embed code looks like this:

&lt;object width="425" height="350"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/gT8BqZhIdTc"&gt;&lt;/param&gt;
&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;
&lt;embed src="http://www.youtube.com/v/gT8BqZhIdTc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/object&gt;

Then change it to:

&lt;object width="425" height="350"&gt;&lt;param name="movie" value="http://www.youtube.com/v/gT8BqZhIdTc"&gt;&lt;/param&gt;
&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;
&lt;embed src="http://www.youtube.com/v/gT8BqZhIdTc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;&lt;/object&gt;

If the embed code includes the closed </embed> tag there should not be any problems though.

thanx man ;D