<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>内联框架学习</title> </head> <body> <!--iframe内联框架 src:地址 w-h:宽度高度 --> <iframe src="" name="hello" frameborder="0"width="1000px"height="800px"></iframe> <a href="https://www.bilibili.com/"target="hello">点击跳转到B站</a> <iframe src="//player.bilibili.com/player.html?aid=247609487&bvid=BV1vv41177jq&cid=324439110&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe> </body> </html>
结果展示