What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 3 questions

Less than 30 seconds. Find out how much you really know about Google search.

🕒 ~30s 🎯 3 questions 📚 SEO Google

Official statement

Google has published a set of recommendations for links. If you're working with a web designer and want to ensure that the links on your site work well for search, this document is essential to share with your team.
🎥 Source video

Extracted from a Google Search Central video

💬 EN 📅 18/04/2023 ✂ 12 statements
Watch on YouTube →
Other statements from this video 11
  1. Comment exploiter l'export massif de données Search Console vers BigQuery pour optimiser votre stratégie SEO ?
  2. Google récompense-t-il vraiment la qualité du contenu indépendamment de sa méthode de production ?
  3. L'automatisation du contenu est-elle vraiment considérée comme du spam par Google ?
  4. L'IA pour générer du contenu SEO : spam ou opportunité légitime ?
  5. L'IA générative impose-t-elle de nouvelles règles d'évaluation du contenu selon Google ?
  6. Faut-il vraiment se soucier du qui, comment et pourquoi dans la création de contenu ?
  7. Le tableau de bord de statut de Google change-t-il vraiment la donne pour les professionnels SEO ?
  8. Pourquoi Google ajoute-t-il l'Expérience aux critères EAT pour évaluer la qualité des contenus ?
  9. Rel=canonical : pourquoi Google a-t-il mis à jour sa documentation officielle ?
  10. Pourquoi Google publie-t-il une galerie officielle des éléments visuels de la recherche ?
  11. Le système d'avis produits de Google s'étend : quelles langues sont concernées et qu'est-ce que ça change pour vous ?
📅
Official statement from (3 years ago)
TL;DR

Google is releasing a document with recommendations on links targeted at web designers, suggesting that creative teams are missing critical SEO fundamentals. The underlying message: poorly implemented links hinder crawling, PageRank distribution, and indexation — and it's often due to design choices, not strategy.

What you need to understand

Why is Google specifically targeting web designers?

Google doesn't publish this type of document by accident. If Mountain View takes the time to write a guide for web designers, it's because there's a recurring problem in how links are implemented on the front-end.

Designers often prioritize aesthetics and user experience — accordions, hidden menus, JavaScript animations, CSS-styled buttons. The catch? These choices regularly override SEO best practices without anyone noticing until the crawl happens.

What are the concrete risks of poor link implementation?

A poorly coded link is a direct blocker for Googlebot. If the crawler can't follow a link, the target page isn't discovered, not crawled, not indexed. Your internal PageRank distribution collapses.

Classic mistakes: links rendered in JavaScript without HTML fallback, onclick attributes without an <a> tag, pseudo-links styled with CSS that lead nowhere for a bot. The designer sees a clickable button, Google sees nothing.

What does Google's guide probably contain?

Without the complete document in front of us, we can anticipate the fundamentals Google has been hammering for years: use valid <a href> tags, avoid unnecessary nofollow attributes, ensure links are crawlable without JavaScript.

Google probably also emphasizes semantic HTML structure, accessible navigation, and the distinction between strategic internal links and secondary navigation elements. In short, technical best practices often sacrificed for visual creativity.

  • A valid link = <a href> tag with a clean absolute or relative URL
  • Link accessibility without JavaScript: Googlebot must not depend on a JS event to discover the URL
  • Avoid blocking attributes: nofollow, noindex via meta robots, or incorrect directives
  • Clear hierarchy: primary navigation links vs. footer vs. related content
  • Descriptive anchor text: no generic "Click here", contextual and relevant text

SEO Expert opinion

Is this initiative consistent with real-world observations?

Absolutely. SEO audits regularly reveal silent catastrophes related to links: orphaned pages, entire site sections invisible to Google, disorganized internal linking. And often, the root cause comes from a poorly configured modern front-end framework or a designer who coded a menu as a clickable <div>.

SEO agencies spend enormous amounts of time fixing these errors after the fact. Google is clearly trying to shift awareness upstream, toward design teams. It's pragmatic, even if effectiveness remains to be seen.

What nuances should we add to this discourse?

Google tends to simplify to reach a broad audience. The problem is that edge cases are never addressed: what about lazy-loaded links? Conditional dropdown menus? Complex SPAs with client-side rendering?

The guide will probably be oriented toward "general best practices" — useful for 80% of cases, but [To verify] for modern architectures. If you're working with React or Vue with partial SSR, don't take these recommendations as gospel without testing.

In what cases could these rules cause problems?

Some rich interfaces require JavaScript to function. Think SaaS dashboards, complex web applications, product configurators. Imposing classic HTML links everywhere can break the user experience or unnecessarily bloat the DOM.

The real challenge? Distinguishing between public pages meant for SEO (blog, product sheets, categories) and private application interfaces. On the former, no compromises: clean HTML, crawlable links. On the latter, Google has no business there — optimize for the logged-in user.

Warning: Never sacrifice user experience for SEO. The goal is to make public content accessible to Google without degrading navigation for your visitors. If a technical compromise is necessary, document it and measure the real impact.

Practical impact and recommendations

What should you do concretely with this guide?

First, get the document and share it with your front-end and design teams. Not just an email — organize a working session to align everyone on the SEO issues related to links.

Next, audit your current site. Crawl it with Screaming Frog or Oncrawl, enable the "Render JavaScript" option, and compare results with a pure HTML crawl. Any major difference signals a discoverability problem for Google.

What mistakes should you absolutely avoid?

Don't assume that "it works for the user so it works for Google". Googlebot doesn't click, it parses HTML. If your link requires a mouseOver, infinite scroll, or a JavaScript event to appear, it doesn't exist for the bot.

Another classic mistake: diluting internal PageRank with hundreds of pointless footer links, multi-level menus exposing your entire structure on every page, or poorly managed pagination links. Fewer links = more weight per link. Concentrate power where it matters.

How can you verify your site is compliant?

Test your key pages in Google Search Console using the URL inspection tool. Look at the "rendered" version: are critical links visible? Is internal linking complete?

Also validate HTML structure with the W3C Validator. Clean code makes Googlebot's job easier. Finally, check rel attributes: no nofollow on strategic internal links, no sponsored or ugc placed incorrectly.

  • Crawl your site with and without JavaScript enabled to detect discoverability gaps
  • Verify that all strategic internal links use valid <a href> tags
  • Remove or nofollow footer/sidebar links that dilute PageRank without SEO value
  • Test key pages in Google Search Console (rendered version) to validate link visibility
  • Audit rel attributes: no nofollow on important internal linking
  • Train design and dev teams on SEO issues related to links starting from the mockup phase
  • Document technical standards in a shared internal guide between SEO, dev, and design
This Google guide is an opportunity to overhaul your link management in your web projects. But let's be honest: aligning designers, developers, and SEO constraints takes time, technical expertise, and a deep understanding of crawl issues. If your team lacks resources or specialized SEO skills, support from a specialized agency can help avoid costly mistakes and accelerate your architecture's compliance.

❓ Frequently Asked Questions

Pourquoi les designers web sont-ils une cible prioritaire pour Google sur les questions de liens ?
Parce que beaucoup de choix de conception front-end (menus JavaScript, accordéons, boutons CSS) cassent la crawlabilité des liens sans que personne ne s'en aperçoive avant l'audit SEO. Google veut sensibiliser en amont, avant que le site soit en prod.
Un lien stylisé en CSS sans balise <a> est-il vraiment invisible pour Google ?
Oui. Googlebot parse le HTML. Si votre lien est un <div> avec un onclick en JavaScript, le bot ne le voit pas comme un lien, même si l'utilisateur peut cliquer. Utilisez toujours <a href>.
Les frameworks JavaScript modernes (React, Vue, Next.js) posent-ils problème avec ces recommandations ?
Ça dépend de l'implémentation. Avec du SSR ou du pre-rendering, les liens sont présents dans le HTML initial et Google les voit. En pur client-side rendering sans fallback, c'est la loterie. Testez systématiquement avec Search Console.
Faut-il supprimer tous les liens en nofollow interne ?
Pas forcément. Le nofollow interne peut avoir du sens pour contrôler le budget crawl (filtres de facettes, pages de connexion, etc.). Mais ne l'utilisez jamais sur des liens stratégiques pour votre maillage interne et votre distribution de PageRank.
Comment convaincre un designer de respecter ces contraintes SEO ?
Montrez-lui les données : pages orphelines, baisse de trafic sur des sections mal liées, perte de positions. Proposez des solutions techniques qui concilient UX et SEO, comme des menus hybrides avec HTML de base enrichi en JS progressivement.
🏷 Related Topics
AI & SEO Links & Backlinks PDF & Files

🎥 From the same video 11

Other SEO insights extracted from this same Google Search Central video · published on 18/04/2023

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.