iframe内联框架
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iframe内联框架</title>
</head>
<body>
<!--
src:地址 必填
frameborder:为0是无边框,为i是有边框
-->
<iframe src="https://space.bilibili.com/95256449/channel/detail?cid=146244" frameborder="0" height="800px" width="1000px"></iframe>
</body>
</html>
也可以如下:
<iframe src="" name="hello" frameborder="0" height="100px" width="100px"></iframe>
<a href="FirstWeb.html" target="hello">点击跳转</a>
<iframe src="" name="hello" frameborder="0" height="1000px" width="1000px"></iframe>
<a href="https://space.bilibili.com/95256449/channel/detail?cid=146244" target="hello">点击跳转</a>
iframe内联框架