<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iframe内联框架</title>
</head>
<body>
<!-- iframe内联框架
src:地址(引用页面地址)
name:框架标识名
width:宽度
height:高度
-->
<iframe src="" name="boke" frameborder="0" width="800px" height="800px"></iframe>
<a href="https://blog.csdn.net/qq_63898506" target="boke">点击我跳转</a>
<!-- <iframe src="//player.bilibili.com/player.html?isOutside=true&aid=55631961&bvid=BV1x4411V75C&cid=97257967&p=11" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"></iframe> -->
</body>
</html>