header:页面头部

footer:页面脚部

section:页面主体

article:独立的文章内容

aside:侧边栏

nav:导航类辅助内容

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<header>
    <h2>页面头部</h2>
</header>
<section>
    <h2>页面主体</h2>
</section>
<footer>
    <h2>页面脚部</h2>
</footer>
<article>
    <h2>11111</h2>
</article>
<aside>
    <h2>2222</h2>
</aside>
<nav>
    <h2>33333</h2>
</nav>
</body>
</html>

看不懂

posted on 2022-07-03 01:21  阿霖找BUG  阅读(22)  评论(0)    收藏  举报