What is this in html page? How it will support SEO? [closed]
<link rev="made" href="mailto:test.com">
It is a way to add semantic information to a page. In this case the email address of the maker.
The value made
is not in the HTML spec as a link type, so this appears to really be informational only.
The rev
attribute is supposed to be a link back to a parent page (or previous page), it is short for "reverse link".
Read about the rev
attribute here and here.
In terms of SEO, I don't believe this example will make a difference.
精彩评论