尤其是因为轮廓,使用h1
.
如果您的网页是网站的一部分,则每个页面都应该有一个网站标题h1
,其中包含网站标题、网站徽标或两者兼有。重要的是,此站点标题不是分段元素 ( section
/ article
/ aside
/ nav
) 的子元素。
因此,页面的顶级标题将始终是站点标题。并且站点导航、页面的主要内容、带有次要内容的侧边栏等都将是该顶级标题的“子项”。
因此,博客文章页面的简单结构可能是:
<body>
<h1><img src="logo.png" alt="John's blog"></h1>
<nav><!-- the site-wide navigation --></nav>
<article>
<h1>My first blog post</h1>
<p>…</p>
<footer><!-- this footer applies to the article only--></footer>
</article>
<footer><!-- this footer applies to the whole page (→ the site)--></footer>
</body>
这将创建一个大纲,如:
1 John's blog (→ body>h1)
1.1 untitled (→ body>nav)
1.2 My first blog post (→ body>article>h1)
如果您不使用网站标题/徽标 in h1
,则该页面将有一个无标题的顶级大纲条目:
1 untitled (→ body)
1.1 untitled (→ body>nav)
1.2 My first blog post (→ body>article>h1)
如果您不使用 ah1
作为网站标题/徽标,并且没有为您的主要内容使用分段元素……</p>
<body>
<img src="logo.png" alt="John's blog"> <!-- omitted h1 -->
<nav><!-- the site-wide navigation --></nav>
<!-- omitted article -->
<h1>My first blog post</h1>
<p>…</p>
</body>
......你会得到一个包含两个顶级条目的大纲:
1 untitled (→ body)
1.1 untitled (→ body>nav)
2 My first blog post (→ body>h1)