HTML <iframe> 标签
参考地址:http://www.w3school.com.cn/tags/tag_iframe.asp
----------------------------------------------------------
定义和用法
iframe 元素会创建包含另外一个文档的内联框架(即行内框架)。
与a标签的比较——如果不想点击而自动地把访问地址的内容包含至本页面就用iframe
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <!--iframe--图片--> <!--<iframe width="100%" height="100%" frameborder="0" src="iframe.jpg"></iframe>--> <!--iframe--url 自动访问地址,把目标地址的页面内容包含至本页面--> <iframe width="100%" height="100%" frameborder="0" src="https://www.baidu.com"></iframe> <!--a标签 手动点击访问,跳转至目标页面--> <a href="https://www.baidu.com">a标签</a> <body> </body> </html>
效果: