Can i embed google blogger site on my site?

I have a blogging blogger, and I already had a domain configured on a subdomain of my website, for example http://blog.jthink.net

But how do I really embed a blog on my site so that it has the same title and footer as my main site ( http://www.jthink.net ), so it looks more like the way they did it here

Is this possible with a blogger?

+8
source share
8 answers

While iFrames literally talks about how to embed a blog on your web page, this means that you cannot give people links to a specific blog post, so it does not work very well.

In the end, I found that you can simply customize the blogger template to make your blog look like your other pages, I found that this works better than using iframes.

+3
source

Just use an iFrame for this purpose. Embedding a webpage in an iFrame on your own web site blog is equivalent to copying this webpage to your own web site or blog.

Set the width and height to your own values ​​that you would like to use.

  <iframe src ="URL of the website you want to embed" width="100%" height="500"> </iframe> 

You can also add

 <p>Your browser does not support iFrames.</p> 

Notify if a user is using a browser that does not support iFrame.

So the full code will be

 <iframe src ="URL of the website you want to embed" width="100%" height="500"> <p>Your browser does not support iFrames.</p> </iframe> 
+8
source

Either you can use iFrame, or you can use an individual div for a specific site. Then you can embed it in the site.

Be sure that you can adjust the width and height of the frame or div through CSS. here is a simple code to help embed a blogger site in your existing site.

 <iframe src ="www.xyz.com" width="100%" height="100%"> </iframe> 

If for some reason the browser does not support iFrame, you can notify the user about it. Using a paragraph or any other tag.

+2
source

I am surprised that no one has offered an RSS feed subscription.

If this is a blogger’s site, you can simply subscribe to the standard site feed in your current content management system (CMS). See this link for more information: support.google.com/blogger/answer/97933?hl=en

In fact, I think that’s how the blog you contacted reached its effect. All navigational baggage of the blogger’s original site is left behind, and only the content of each message is automatically rewritten via subscription to RSS content → blog.beatunes.com/atom.xml

 Tools to achieve this: -Wordpress: wordpress.org/plugins/wp-rss-aggregator -Joomla!: extensions.joomla.org/extension/simple-rss-feed-reader -Drupal: drupal.org/node/326575 -SharePoint: lol *highfive* 
+2
source

I'm a bit late to the party, but if you need an alternative to embed your blog directly, can you use the Blogger api ?

In my opinion, this would be the best solution.

+1
source

You can use iframe to embed your blog on the site.
e.g. http://jsfiddle.net/pablofiumara/mCfAe/

Links: https://developer.mozilla.org/ko/docs/Web/HTML/Element/iframe

0
source

Although it’s true that iFrame will embed a blogger’s blog on your site. this is not good for SEO. We encountered this problem and developed a solution that embeds the blog directly into your existing site:

Dropinblog

0
source

iframes are best suited for this. Most browsers support them.
Perhaps you could use business advertising directory page templates?

-2
source

All Articles