This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis
When Googlebot scans your pages, you want to provide as much information about your site as possible. It starts with semantic HTML but, of course, there's more!
Today I learned that you can define your relationship to sites you're linking to.
According to the Google Search documentation, you can use the rel
attribute to define three different link relationships.
<!-- advertisements or paid placements -->
<a rel="sponsored" href="https://cheese.example.com/Appenzeller_cheese">Appenzeller</a>
<!-- user-generated content -->
<a rel="ugc" href="https://cheese.example.com/Appenzeller_cheese">Appenzeller</a>
<!-- "Please don't follow that link!" -->
<a rel="nofollow" href="https://cheese.example.com/Appenzeller_cheese">Appenzeller</a>
If you implement comments on your site, I can see how ugc
becomes essential. It'd be a bummer to see spammers place random links on my sites to harm my Google Search ranking. Having the ability to tell Google Search "Hold on! That's not my stuff!" seems critical. 🙈
Ant it turns out you can also combine these values in a single attribute. 😲
<a rel="sponsored ucg" href="https://cheese.example.com/Appenzeller_cheese">Appenzeller</a>
Disclaimer: I'm not a SEO expert; I'm just pointing out that Googlebot understands these attributes! 😉
Reply to Stefan
This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis
Stefan Judis | Sciencx (2021-12-19T23:00:00+00:00) How to define your relationship to sites you link to (#tilPost). Retrieved from https://www.scien.cx/2021/12/19/how-to-define-your-relationship-to-sites-you-link-to-tilpost/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.