HTML – 将网站嵌入我的网站

前端之家收集整理的这篇文章主要介绍了HTML – 将网站嵌入我的网站前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要做的是将一个网站嵌入我的网站.当您在他们的页面搜索某些内容时,他们的嵌入网站会重定向到他们的网页,尽管它仍然会在我的网页上.任何帮助将不胜感激.我与这个网站合作,他们不知道如何自己做.

如果这令人困惑,我很抱歉.这是一个例子,如果它有帮助

<html>//my site
<header>//my site
</header>//my site
<body>//my site
//where embed website is with their page redirects and search engine
</body>//my site
</html>//my site

当您在他们的网站上搜索或访问他们网站上的页面链接时.这应该是这样的.

<html>//my site
<header>//my site
</header>//my site
<body>//my site
//new page on the embed site after redirect
</body>//my site
</html>//my site

我可以去的任何想法或地方帮助我解决这个问题.

解决方法

您可以使用< embed>将网站嵌入到其他网站中.标签,像这样:
<embed src="http://www.example.com" style="width:500px; height: 300px;">

您可以更改高度,宽度和URL以满足您的需要.

< embed>标签是嵌入网站的最新方式,因为它是随HTML5一起引入的.

原文链接:https://www.f2er.com/html/226721.html

猜你在找的HTML相关文章