<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iframe内联框架</title>
</head>
<body>
<!--iframe src="path" 引用页面地址
name="" 框架标识名
width height 宽度高度
-->
<!--<iframe src="//player.bilibili.com/player.html?isOutside=true&aid=113469026208030&bvid=BV1S7m8YfEki&cid=26725843897&p=1"-->
<!-- scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true">-->
<!--</iframe>-->
<iframe src="https://www.baidu.com" name="hello" frameborder="0" width="1000px" height="800px"></iframe>
<a href="1.我的第一个网页.html" target="hello">点击跳转</a>
</body>
</html>