我知道标题应该如何工作,但在任何单一文本中我都不会使用除H1以外的任何内容。
几年前,在一些杂志风格的网站上,我看到了这种做法,其中H2到H6的标题用作摘录标题 - 链接到其他文章。我自己开始做同样的事情,却不知道代码是否合适(因为没有直接的层次结构,只是隐含的重要感)。
所以,例如,我会使用H1来包装主要文章的标题,而不是“上一篇文章”和“下一篇文章”标题的几个H2,还有一些H3用于标题的“文章”同类“等等。
验证器似乎没问题,但我仍然不确定它在语义上还是在seo方面都很好。它有意义还是愚蠢的?
答案 0 :(得分:0)
您可以在博客中使用以下Hierarchs Hierarchy
<h1>This is post Title</h1>
<p>Paragraph goes here</p>
<h2>This is used for Paragraph Title</h2> // Semantic Keywrods can be used to gain benefit.
<p>Paragraph goes here</p>
<p>Paragraph goes here</p>
<h2>This is used for Paragraph Title</h2> // Semantic Keywrods can be used to gain benefit.
<p>Paragraph goes here</p>
<h3>Title within paragraph</h3>
<h4>Introductory Paragraph of About Yourself or Company</h4>
<p>Introductory Paragraph goes here.</p>
感谢。