I don't see how frob's answer actually answers the question -- I think he answers the reverse question ("how can I embed blogs in my game") -- you want to be able to embed your game in a blog.
YouTube embed, and picture embed, is usually specially-supported by web sites. They recognize YouTube video URLs, and translate the URL into an <iframe src=""...> that points to YouTube, or some other such widget.
Pictures are generally especially supported for upload, or supported as target URLs of <img src=""...> tags.
In general, web forums do not support embedding of arbitrary, "Raw" <iframe=""...> content, which you would need to actually embed your game.
Now, CMS systems, and general websites, can easily embed foreign content. Either by including JavaScript libraries directly, or by the aforementioned <iframe=""...> tag. Thus, if you build a "lightweight" version of your game for the web which runs well in, say, a 400x300 pixel window, then you could easily provide the URL for embedding. This works for any site -- you can embed "<iframe src='
http://gamedev.net/' width='400' height='300'></iframe>" in the HTML code of any website, and it will show a piece of the gamedev.net front page.