Links
Link Best Practices for Google
Google utilizes links as a critical signal in determining the relevancy of pages and discovering new pages to crawl. It is essential to ensure that your links are crawlable so Google can find other pages on your site efficiently, and to optimize your anchor text to enhance comprehensibility for both users and Google.
Making Your Links Crawlable
Google can effectively crawl your link if it is an <a>
HTML element with an href
attribute. Links in other formats may not be parsed by Google's crawlers. Here are some guidelines and examples:
Recommended (Google Can Parse):
Not Recommended (Google May Still Attempt to Parse):
Ensure that the URL in your <a>
element resolves into an actual web address that Google's crawlers can send requests to.
Recommended (Google Can Resolve):
Not Recommended (Google May Still Attempt to Resolve):
Anchor Text Placement
Anchor text, the visible text of a link, provides context about the linked page for both users and Google. Place anchor text between <a>
elements that Google can crawl.
Good Example:
Bad Example (Empty Link Text):
As a fallback, Google can use the title
attribute if the <a>
element is empty.
For images used as links, provide descriptive alt
text in the img
element.
Good Example:
Bad Example (Empty Alt Text and Link Text):
If using JavaScript to insert anchor text, utilize the URL Inspection Tool to ensure the text appears in the rendered HTML.
Writing Good Anchor Text
Good anchor text is descriptive, concise, and relevant to both the page it appears on and the page it links to. It provides context for the link, enhancing user experience and aiding Google in understanding the linked page.
Bad Examples (Too Generic):
Better Examples (More Descriptive):
Bad Example (Weirdly Long):
Better Example (More Concise):
Write naturally, avoiding the urge to cram every keyword into the anchor text. Consider the entire sentence and ensure the context around the links is clear.
Bad Example (Too Many Links Next to Each Other):
Better Example (Links Are Spaced Out with Context):
Internal Links: Cross-Reference Your Own Content
Linking to your own content can help users and Google navigate your site more efficiently. Ensure that every important page has at least one link from another page on your site, considering what other resources might be useful.
There isn't an ideal number of links per page, but avoid overwhelming users with too many links.
External Links: Link to Other Sites
External links can help establish trustworthiness and credibility, especially when citing sources. Link to external sites when relevant, providing context for what users can expect.
Good Example (Citing Sources):
Use nofollow
when you don't trust the source or if the link is paid or user-generated content. For instance, if someone published a dubious story criticizing a beloved book, use nofollow
to prevent transferring link equity.
If users can insert links on your site (e.g., forums or Q&A sections), qualify those links with nocollow
or ugc
attributes.
Always strive for clear, contextually appropriate, and helpful link practices to enhance both user experience and search engine understanding.
Last updated