框架标签:
用iframe标签嵌入一个普通网页、照片、gif、pdf、mp4…(只要浏览器可以打开都能嵌套进去)
应用场景:网页嵌入式广告
<iframe src="https://www.taobao.com" width="30" height="60" frameborder="0"></iframe>
frameborder="0"或=“1” 有无边框
<a href="https://www.taobao.com" target="tb">点我看淘宝</a> <br>
<iframe name="tb" width="900" height="300"></iframe>
iframe的name与超链接的target属性配合使用
<form action="https://so.taobao.com/search" target="container">
<input type="text" name="keyword">
<input type="submit" value="搜索">
</form>
与表单的target属性使用