<iframe>标签的作用及用法。
语法
<iframe>可以在网页内显示网页
属性:URL指向网页所在位置
<!-- <iframe src="URL"></iframe> -->
<iframe src="https://www.taobao.com"></iframe>
设置宽度和高度
height 和 width 属性用于规定 iframe 的高度和宽度。
单位默认是像素,也可以使用百分比(如50%)
<iframe src="https://www.hohong.top" width="200" height="200"></ifr