我有一个博客博客,我已经成功将域名设置为我的网站的子域名,例如
http://blog.jthink.net
但是我如何实际将博客嵌入我的网站,以便它与我的主网站(http://www.jthink.net)具有相同的页眉和页脚,所以它更像是他们的方式here
甚至可以与博主一起使用?
解决方法
只需使用iFrame就可以实现此目的.在您自己的网站博客中将网页嵌入iFrame相当于将该网页复制到您自己的网站或博客中.
将宽度和高度调整为您想要使用的值.
<iframe src ="URL of the website you want to embed" width="100%" height="500"> </iframe>
你也可以添加
<p>Your browser does not support iFrames.</p>
所以完整的代码将是
<iframe src ="URL of the website you want to embed" width="100%" height="500"> <p>Your browser does not support iFrames.</p> </iframe>