The rel attribute specifies the relationship between the current document and the linked document.
I am currently doing this:
<a href="http://example.com" rel="author">Henry Wright</a>
I want to make sure the link is nofollow with reference to search engines. My question is do I do this by adding a second value to the rel attribute like this?
<a href="http://example.com" rel="author nofollow">Henry Wright</a>
I'm not convinced this is the right approach so am reaching out for some help.