以下哪项是构建页面的正确方法:
1)h1只在标题
<header> <h1>Site title</h1> <nav>...</nav> </header> <section> <h2>Page title</h2> </section>
如果我在标题中只使用h1作为网站的标题,那么每个页面都会有相同的h1标签内容。这似乎不是很有用。
<header> <h1>Site title</h1> <nav>...</nav> </header> <section> <h1>Page title</h1> </section>
我也看到了使用h1的例子不止一次,在标题和部分标签。但是,同一页面有两个标题是不是错了?此示例显示多个标头和h1标签http://orderedlist.com/resources/html-css/structural-tags-in-html5/
<header> <p>Site title</p> <nav>...</nav> </header> <section> <h1>Page title</h1> </section>
最后,W3似乎建议在主要部分元素中使用h1,这是否意味着我不应该在头部元素中使用它?
Sections may contain headings of any rank,but authors are strongly
encouraged to either use only h1 elements,or to use elements of the
appropriate rank for the section’s nesting level.