开发者

How to mark an entire section as relevant to a link in html5

开发者 https://www.devze.com 2023-01-09 15:12 出处:网络
I have an index page, which consists of the content name, which is the url to the actual content. And in a element under it a longer description.

I have an index page, which consists of the content name, which is the url to the actual content.

And in a element under it a longer description. Is there a way to associate this longer descripti开发者_StackOverflow中文版on to the link (for SEO) or may be it is not needed, as search engines will know this due to the content itself?

html for example

<dl>
  <dt><a href="fdsfsdf">the title</a></dt>
  <dd> a longer description of this content..............</dd>
</dl>


The fact that you are using a definition list will associate the stuff in the dt to the dd, but what is more important for SEO purposes is that the content on the page linked to has some relevance to "the title" in the link.

0

精彩评论

暂无评论...
验证码 换一张
取 消