Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I embed google blogger site into my website

Tags:

html

blogger

I have a blogger blog and I have already successfully had the domain set to a subdomain of my website e.g http://blog.jthink.net

But how do I actually embed the blog onto my website so that it has same header and footer as my main website ( http://www.jthink.net ) so it's more like the way they have done it here

Is it even possible with blogger?

like image 932
Paul Taylor Avatar asked Dec 16 '15 13:12

Paul Taylor


People also ask

Can you embed Google Sites into another website?

Classic Google Sites provides a setting to allow site embedding so you can allow your classic Google Site to appear in another site. For new Google Sites there's no option to allow new Google Sites appear in iframes - see Compare classic to new Sites.

Can I use Blogger with my own domain?

Getting the Necessary DNS Settings from Blogger Log in to Blogger.com and select the blog you would like to connect to your domain. In the left side menu, click Settings. Scroll down to the Publishing section and select Setup a 3rd party URL for your blog. Enter your domain name and click Save.


1 Answers

Just use an iFrame for this purpose. To embed a webpage in an iFrame in your own blog of a website is equivalent to copying that webpage into your own website or blog.

Adjust 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 could also add

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

To notify if a user uses a browser that does not support iFrame.

So the complete 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>
like image 192
Rashwan L Avatar answered Oct 18 '22 22:10

Rashwan L