html页面结构--内联框架 iframe

页面结构

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>网页结构学习</title>
</head>
<body>
<header>
    <h2>网页头部</h2>
</header>

<section>
    <h2>网页主体</h2>
</section>

<footer>
    <h2>网页脚步</h2>
</footer>

</body>
</html>

内联框架

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>内联框架</title>
</head>
<body>

<!--iframe 内联框架
src:地址
W-H:宽-高
-->
<iframe src="https://www.bilibili.com/" name="22" frameborder="0" width="1000" height="800"></iframe>


<iframe src="" name="111"></iframe>
<a href="3.图像标签.html" target="111" >点击跳转</a>
</body>
</html>
posted @ 2022-04-28 14:17  小幼虫虫  阅读(71)  评论(0)    收藏  举报