<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Archives des les piliers du SEO - st9ph.fr</title>
	<atom:link href="https://st9ph.fr/tag/les-piliers-du-seo/feed/" rel="self" type="application/rss+xml" />
	<link>https://st9ph.fr/tag/les-piliers-du-seo/</link>
	<description>la boite à outils numériques</description>
	<lastBuildDate>Thu, 02 Apr 2026 08:32:31 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://st9ph.fr/wp-content/uploads/2026/02/cropped-ico-fav-32x32.png</url>
	<title>Archives des les piliers du SEO - st9ph.fr</title>
	<link>https://st9ph.fr/tag/les-piliers-du-seo/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">199087513</site>	<item>
		<title>⏺️Omnicanal &#124; Search Engine Marketing</title>
		<link>https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/</link>
					<comments>https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#respond</comments>
		
		<dc:creator><![CDATA[St9ph]]></dc:creator>
		<pubDate>Thu, 08 Jan 2026 20:56:41 +0000</pubDate>
				<category><![CDATA[☝️ Concepts]]></category>
		<category><![CDATA[⏺️ Omnicanal]]></category>
		<category><![CDATA[🌐 public]]></category>
		<category><![CDATA[comprendre le SEO]]></category>
		<category><![CDATA[les piliers du SEO]]></category>
		<category><![CDATA[optimiser son site]]></category>
		<category><![CDATA[outils de SEA]]></category>
		<guid isPermaLink="false">https://st9ph.fr/?p=32397</guid>

					<description><![CDATA[<p>📖 Lecture : 0 % ☰ 📚 Sources 🧑‍🎓NDRC 📘 Glossaire Sociallyin et Twinstrata &#8211; enquête sur les internautes SatsCounter &#8211; Données usages d&#8217;Internet Google Search Central &#8211; video expliquant le crawling Google Analytics et Jetpack WordPress &#8211; illustrations des stats st9ph.fr Google Trends, Yoast Semrush et Ubersuggest &#8211; analyse des mots clés Nano Banana ... <a title="⏺️Omnicanal &#124; Search Engine Marketing" class="read-more" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" aria-label="En savoir plus sur ⏺️Omnicanal &#124; Search Engine Marketing">Lire la suite</a></p>
<p>L’article <a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/">⏺️Omnicanal | Search Engine Marketing</a> est apparu en premier sur <a href="https://st9ph.fr">st9ph.fr</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p></p>



<div class="wp-block-uagb-inline-notice uagb-inline_notice__align-left uagb-block-60e92510"><button class="uagb-notice-close-button" type="button" aria-label="Close"></button><h5 class="uagb-notice-title"><strong>C&#8217;est quoi  le &#8220;Search Engine Marketing&#8221; ?</strong></h5><div class="uagb-notice-text">
<p class="has-medium-font-size">Le Search Engine Marketing (SEM) est l&#8217;addition de la Search Engine Optimization (SEO), le référencement naturel (ou organique) et du Search Engine Advertising (SEA), le référencement sponsorisé. Bref, c&#8217;est l&#8217;ensemble des méthodes de visibilité sur les moteurs de recherche.</p>
</div></div>



<!-- =====================================================
     BADGE DE LECTURE + BADGE "DÉJÀ LU"
     - % de lecture en temps réel
     - Devient vert à 75 %
     - Mémorisé en session (déjà lu)
     ===================================================== -->

<!-- ✅ STRUCTURE HTML DU BADGE -->
<div id="readBadge">
  📖 Lecture : 0 %
</div>

<style>
/* ===============================
   STYLE DU BADGE
   =============================== */
#readBadge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* Badge visible */
#readBadge.show {
  opacity: 1;
  transform: translateY(0);
}

/* Badge vert = article lu */
#readBadge.read {
  background: #188038;
}
</style>

<script>
/* ===============================
   LOGIQUE JAVASCRIPT
   =============================== */
(function () {

  const badge = document.getElementById("readBadge");

  // ✅ Clé unique par page (URL)
  const storageKey = "articleLu_" + window.location.pathname;

  // ✅ Si déjà lu dans la session
  if (sessionStorage.getItem(storageKey)) {
    badge.classList.add("show", "read");
    badge.innerText = "✅ Article déjà lu";
    return; // on ne recalcule plus le scroll
  }

  let badgeShown = false;
  let articleMarkedAsRead = false;

  window.addEventListener("scroll", function () {

    const scrollTop = window.scrollY;
    const docHeight = document.body.scrollHeight - window.innerHeight;
    const percent = Math.round((scrollTop / docHeight) * 100);

    // Mise à jour du texte
    badge.innerText = "📖 Lecture : " + percent + " %";

    // Affichage du badge dès 10 %
    if (percent >= 10 && !badgeShown) {
      badge.classList.add("show");
      badgeShown = true;
    }

    // ✅ Article considéré comme lu à 75 %
    if (percent >= 75 && !articleMarkedAsRead) {
      badge.classList.add("read");
      badge.innerText = "✅ Article lu à " + percent + " %";
      sessionStorage.setItem(storageKey, "true");
      articleMarkedAsRead = true;
    }

  });

})();
</script>



<!-- Bouton principal -->
<button id="uxMenuBtn" style="
  position: fixed;
  right: 14px;
  bottom: 40%;
  padding: 12px 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  font-size: 18px;
">
  ☰
</button>

<!-- Menu -->
<div id="uxMenu" style="
  display:none;
  position: fixed;
  right: 14px;
  bottom: 48%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  font-family: Arial, sans-serif;
">
  <button class="uxItem" data-popup="sources">📚 Sources</button>
  <button class="uxItem" data-popup="methodo">🧑‍🎓NDRC</button>
  <button class="uxItem" data-popup="glossary">📘 Glossaire</button>
</div>

<!-- Overlay -->
<div id="uxOverlay" style="
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.55);
  z-index:10001;
"></div>

<!-- POPUPS -->

<div class="uxPopup" id="sources" data-title="📚 Sources UX mobile">
<ul>
<li><strong>Sociallyin et Twinstrata</strong> &#8211; enquête sur les internautes</li>
<li><strong>SatsCounter</strong> &#8211; Données usages d&#8217;Internet</li>
<li><strong>Google Search Central</strong> &#8211;  video expliquant le crawling</li>
<li><strong>Google Analytics et Jetpack WordPress</strong> &#8211; illustrations des stats st9ph.fr</li>
<li><strong>Google Trends, Yoast Semrush et Ubersuggest</strong> &#8211; analyse des mots clés</li>
<li><strong>Nano Banana Pro de Google Gemini</strong> – personnage d&#8217;illustration et image en avant</li>
</ul>
</div>

<div class="uxPopup" id="methodo" data-title="🧑‍🎓 NDRC">
<p> 🟦 Cet article est à visée de l&#8217;épreuve écrite E5A</p>
<ul>
<li>savoir identifier les enjeux, les éléments clés et les méthodes de SEO </li>
<li>savoir identifier les enjeux, les éléments clés et les méthodes de SEA </li>
</ul>
<p>👉 ces éléments sont incontournables dans les dossiers </p>
</div>

<div class="uxPopup" id="glossary" data-title="📘 Glossaire UX mobile">
<ul>
<li><strong>SERP</strong> : Search Engine Page Result </li>
<li><strong>Crawlable</strong> : que les Google Bots peuvent analyser </li>
<li><strong>LCP</strong> : Largest Contentful Paint (Chargement)</li>
<li><strong>INP</strong> : Interaction to Next Paint (temps de réaction) </li>
<li><strong>CLS</strong> : Cumulative Layout Shift (charge cumulée du navigateur) </li>
<li><strong>Navigateur</strong> : Logiciel qui permet de visualiser les pages d&#8217;internet </li>
<li><strong>Moteur de recherche</strong> : Base de donnée et éditeur de SERP (dans le navigateur) </li>
</ul>
</div>

<!-- Style popup -->
<style>
.uxItem {
  display: block;
  padding: 10px 16px;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #111;        /* ✅ TEXTE VISIBLE */
  font-size: 14px;
}

.uxItem:hover {
  background: #f0f0f0;
}
.uxItem:hover { background:#f0f0f0; }

.uxPopup {
  display:none;
  position:fixed;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  width:90%;
  max-width:560px;
  max-height:80%;
  padding:24px;
  border-radius:10px;
  box-shadow:0 10px 40px rgba(0,0,0,0.25);
  z-index:10002;
  overflow-y:auto;
}
</style>
<style>
@media (max-width: 768px) {
  #uxMenuBtn,
  #uxMenu {
    display: none !important;
  }
}
</style>
<style>
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}
</style>
<style>
@media (max-width: 768px) {
  #uxMenuBtn,
  #uxMenu,
  #uxOverlay,
  .uxPopup {
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    display: none !important;
  }
}
</style>

<script>
(function () {

  // === DÉSACTIVATION MOBILE ===
  if (window.innerWidth <= 768) {
    return; // on ne fait RIEN sur mobile
  }

  // === RÉFÉRENCES ===
  const menuBtn = document.getElementById("uxMenuBtn");
  const menu = document.getElementById("uxMenu");
  const overlay = document.getElementById("uxOverlay");
  const popups = document.querySelectorAll(".uxPopup");

  if (!menuBtn || !menu || !overlay) return;

  // === OUVERTURE / FERMETURE MENU ===
  menuBtn.addEventListener("click", () => {
    menu.style.display = menu.style.display === "block" ? "none" : "block";
  });

  // === OUVERTURE POPUPS ===
  document.querySelectorAll(".uxItem").forEach(btn => {
    btn.addEventListener("click", () => {
      popups.forEach(p => p.style.display = "none");
      const target = document.getElementById(btn.dataset.popup);
      if (target) target.style.display = "block";
      overlay.style.display = "block";
      menu.style.display = "none";
    });
  });

  // === FERMETURE OVERLAY ===
  overlay.addEventListener("click", () => {
    popups.forEach(p => p.style.display = "none");
    overlay.style.display = "none";
  });

})();
</script>



</script>
<script>
(function () {
  if (window.innerWidth <= 768) {
    const uxPanel = document.querySelector('.ux-panel');
    if (uxPanel) {
      uxPanel.remove();
    }
  }
})();
</script>



<figure class="wp-block-audio"><audio controls src="https://st9ph.fr/wp-content/uploads/2026/01/voicertool_audio_Eloise_12-01-2026_at_19_31_54_on_January_12th_2026.mp3"></audio><figcaption class="wp-element-caption">🎧 écouter l'intro audio</figcaption></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<div class="wp-block-uagb-counter uagb-block-00c02f68 wp-block-uagb-counter--circle"><div class="wp-block-uagb-counter-circle-container"><div class="wp-block-uagb-counter-circle-container__content"><span class="wp-block-uagb-counter__icon"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M318.4 304.5c-3.531 9.344-12.47 15.52-22.45 15.52h-105l45.15 94.82c9.496 19.94 1.031 43.8-18.91 53.31c-19.95 9.504-43.82 1.035-53.32-18.91L117.3 351.3l-75 88.25c-4.641 5.469-11.37 8.453-18.28 8.453c-2.781 0-5.578-.4844-8.281-1.469C6.281 443.1 0 434.1 0 423.1V56.02c0-9.438 5.531-18.03 14.12-21.91C22.75 30.26 32.83 31.77 39.87 37.99l271.1 240C319.4 284.6 321.1 295.1 318.4 304.5z"></path></svg></span><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="10" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">des internautes<br>cliquent en <strong>page 2</strong><br>d'une SERP</div></div><svg preserveAspectRatio="xMinYMin meet" viewBox="0 0 230 230" version="1.1" xmlns="http://www.w3.org/2000/svg"><circle class="uagb-counter-circle__background"></circle><circle class="uagb-counter-circle__progress"></circle></svg></div></div>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>🙄c'est quoi une SERP ?</summary>
<p>Search Engine Page Result (ou Response) : la page de résultat d'une recherche quand vous validez vos mots clés</p>
</details>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p>🚩Selon <a href="https://sociallyin.com/google-statistics/" target="_blank" rel="noreferrer noopener">Sociallyin</a>, <strong>90 % des internautes cliquent sur </strong>un lien de SERP sur <strong>la 1ere page </strong>!</p>



<p class="has-base-2-background-color has-background">Quant on sait que si on enlève <strong>les liens sponsorisés </strong>de haut et de bas de page, <strong>le carrousel</strong> éventuel <strong>de produits</strong>, la loupe <strong>d'échantillons d'images </strong>ou autre, <strong>il vous reste 4 ou 5 lignes</strong> pour être dans tout ce bazar !</p>



<p class="has-text-align-center">🌍 Ce sont <strong>les 2/3 des nouveaux atterrissages </strong>sur vos eshops qui seront de <strong>source organique</strong> selon <a href="https://www.twinstrata.com/seo-statistics/" target="_blank" rel="noreferrer noopener">twinstrata</a> !</p>
</div>
</div>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-ad2f72ca wp-block-group-is-layout-flex">
<p class="has-large-font-size">100 000 </p>



<p>C'est <strong>le nombre de SERP  demandées chaque seconde</strong> aux moteurs de recherche !</p>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%"><div class="wp-block-image">
<figure class="alignright size-full is-resized"><img decoding="async" width="233" height="211" src="https://st9ph.fr/wp-content/uploads/2025/12/IA.png" alt="" class="wp-image-31733" style="width:79px;height:auto"/></figure>
</div>


<p class="has-small-font-size">Part d'IA /5 dans cet article</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<div class="wp-block-columns has-base-2-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-2"><rect height="150" width="75" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-3"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-75ce1b91-c0b7-41c4-a51d-4003cd1a68bf-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">♨️ Sources</div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-c4908510-d237-4520-8475-b938427319c4">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-2"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-3"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-c4908510-d237-4520-8475-b938427319c4-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">🖼️ Images</div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-c2bbe883-faf6-4ce1-bd21-50a975f5d771">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-0"><rect height="150" width="75" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-1"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-2"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-3"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-c2bbe883-faf6-4ce1-bd21-50a975f5d771-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">✒️Contenu</div>
		</div></div>
</div>
</div>
</div>



<div class="wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-94bc23d7 wp-block-group-is-layout-flex">
<p>⏱️Temps de lecture :</p>


<div class="wp-elements-2660b74cdd79da9184a09a62f3b8f226 wp-block-post-time-to-read has-text-color has-accent-color">44–66 minutes</div>


<p>|</p>


<div class="wp-block-post-time-to-read">10 445 mots</div>


<p>|</p>



<p class="has-accent-color has-text-color has-link-color wp-elements-f8515b49564e2f8ad2c183e4ed182d7c">🗓️ dernière modification le</p>


<div class="has-link-color wp-block-post-date__modified-date wp-elements-c7e6b51b55b0dff84108436fc6f3823e wp-block-post-date has-text-color has-accent-color"><time datetime="2026-04-02T10:32:31+02:00">2 avril  2026</time></div></div>


				<div class="wp-block-uagb-table-of-contents uagb-toc__align-left uagb-toc__columns-1  uagb-block-a32f2ab0      uagb-toc__collapse--list"
					data-scroll= "1"
					data-offset= "30"
					style=""
				>
				<div class="uagb-toc__wrap">
						<div class="uagb-toc__title">
							plan de l'article :						</div>
												<div class="uagb-toc__loader"></div>										<div class="uagb-toc__list-wrap uagb-toc__list-hidden">
						<ol class="uagb-toc__list"><li class="uagb-toc__list "><a href="#0-moteurs-et-enjeux" class="uagb-toc-link__trigger">0️⃣| Moteurs et enjeux ?</a><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#le-référencement-naturel-seo" class="uagb-toc-link__trigger">Le référencement naturel (SEO)</a><ul class="uagb-toc__list"><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#11-le-maillage-linking" class="uagb-toc-link__trigger">🔹1.1 | ⚙️ Le maillage (linking)</a><ul class="uagb-toc__list"><li class="uagb-toc__list "><a href="#maillage-interne-et-externe-referal-vos-autres-sites" class="uagb-toc-link__trigger">➡️ Maillage interne et externe Referal (vos autres sites)</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#liens-externes-purs-afiliate" class="uagb-toc-link__trigger">➡️ Liens externes purs (Afiliate)</a></li></ul><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#12-pertinence-du-contenu-et-des-mots-clés" class="uagb-toc-link__trigger">🔹1.2 | ⚙️ pertinence du contenu et des mots clés</a><ul class="uagb-toc__list"><li class="uagb-toc__list "><a href="#balises-choix-de-mots-clés-et-longues-traines" class="uagb-toc-link__trigger">➡️Balises, choix de mots clés et longues traines</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#pertinence-des-contenus" class="uagb-toc-link__trigger">➡️ Pertinence des contenus</a></li></ul><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#13-règles-de-conception-et-traçage" class="uagb-toc-link__trigger">🔹1.3 | ⚙️ règles de conception et traçage</a><ul class="uagb-toc__list"><li class="uagb-toc__list "><a href="#développer-light" class="uagb-toc-link__trigger">➡️ Développer &quot;light&quot;</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#laissez-google-entrer-dans-votre-backoffice" class="uagb-toc-link__trigger">➡️ laissez Google entrer dans votre backoffice</a></li></ul></li></ul></li><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#le-référencement-sponsorisé-sea" class="uagb-toc-link__trigger">le référencement sponsorisé (SEA)</a><ul class="uagb-toc__list"><li class="uagb-toc__list "><a href="#st9ph" class="uagb-toc-link__trigger">St9ph</a></ul></ul></ul></ol>					</div>
									</div>
				</div>
			


<h2 class="wp-block-heading has-accent-color has-text-color has-link-color wp-elements-eae912ddd198ecec5b20ff91449c86dd" id="0-0%EF%B8%8F%E2%83%A3-moteurs-et-enjeux-">0️⃣| Moteurs et enjeux ?</h2>



<p>Voici un graphique qui <strong>se met à jour automatiquement </strong>depuis le <a href="https://gs.statcounter.com/search-engine-market-share/all/france" target="_blank" rel="noreferrer noopener">statcounter</a>. A l'heure où j'écris cet article (janvier 2026) <strong>Google </strong>(Google.fr + google.com)<strong> est ultra dominant avec 93 % des recherches</strong> effectuées <strong>en France</strong> sur 12 mois glissants (soit <strong>pour 2025</strong>). <em>Mais, je serais très surpris que cela change</em> ! 😯</p>



<!-- DÉBUT STATCOUNTER MOTEURS DE RECHERCHE (V2 - ID CORRIGÉ) -->
<div id="statcounter-search-placeholder" style="width:100%; max-width:600px; height:400px; margin: 0 auto; text-align:center;">
    <p style="color:#777; font-style:italic;">Chargement des statistiques en cours...</p>
</div>
<p style="text-align:center; font-size:0.9em; color:#555;">
    Source: <a href="https://gs.statcounter.com/search-engine-host-market-share/all/france" target="_blank" rel="noopener">StatCounter - Moteurs de recherche France</a>
</p>

<script>
(function() {
    // 1. Calcul des dates dynamiques
    const now = new Date();
    const currentYear = now.getFullYear();
    const currentMonth = now.getMonth() + 1; 
    
    // Mois dernier (M-1)
    let endYear = currentYear;
    let endMonth = currentMonth - 1;
    
    if (endMonth === 0) { 
        endMonth = 12;
        endYear = currentYear - 1;
    }
    
    // Début : 1 an avant
    let startYear = endYear - 1;
    let startMonth = endMonth;
    
    // Formatage AAAAMM
    const format = (y, m) => y.toString() + (m < 10 ? '0' : '') + m.toString();
    
    const startStr = format(startYear, startMonth);
    const endStr = format(endYear, endMonth);
    
    // 2. Construction de l'ID unique (CORRIGÉ)
    // Basé sur ton ID original : all-search_engine_host-FR-monthly-AAAAAA-BBBBBB
    const baseId = "all-search_engine_host-FR-monthly";
    const chartId = `${baseId}-${startStr}-${endStr}`;
    
    // 3. Mise à jour de la DIV
    const container = document.getElementById('statcounter-search-placeholder');
    container.id = chartId; 
    container.style.width = "600px";
    container.style.height = "400px";
    
    // 4. Injection des scripts
    // Vérification pour éviter de charger fusioncharts.js deux fois sur la même page
    if (!document.querySelector('script[src="https://www.statcounter.com/js/fusioncharts.js"]')) {
        const script1 = document.createElement('script');
        script1.type = 'text/javascript';
        script1.src = 'https://www.statcounter.com/js/fusioncharts.js';
        document.body.appendChild(script1);
    }
    
    const script2 = document.createElement('script');
    script2.type = 'text/javascript';
    // URL reconstruite avec le bon ID
    script2.src = `https://gs.statcounter.com/chart.php?${chartId}&#038;chartWidth=600`;
    
    document.body.appendChild(script2);
    
    console.log(`StatCounter Moteurs chargé pour : ${startStr} à ${endStr}`);
    console.log(`ID utilisé : ${chartId}`);
})();
</script>
<!-- FIN STATCOUNTER MOTEURS DE RECHERCHE -->



<p>Si on dissocie la part <strong>mobilité </strong>de la part <strong>sédentaire</strong>, les données sont assez différentes (2025) :</p>



<figure class="wp-block-table"><table><thead><tr><th class="has-text-align-right" data-align="right"><strong>Moteur de recherche</strong></th><th class="has-text-align-center" data-align="center"><strong>Mobile </strong></th><th class="has-text-align-center" data-align="center"><strong>Desktop </strong></th><th class="has-text-align-center" data-align="center"><strong>Global </strong></th></tr></thead><tbody><tr><td class="has-text-align-right" data-align="right">🥇<strong>Google</strong> (.fr + . com)</td><td class="has-text-align-center" data-align="center"><em>93,5</em>7 % </td><td class="has-text-align-center" data-align="center">78,66 % </td><td class="has-text-align-center" data-align="center">≈ 88,58 % </td></tr><tr><td class="has-text-align-right" data-align="right">🥈 <strong>Bing</strong></td><td class="has-text-align-center" data-align="center">00,60 % </td><td class="has-text-align-center" data-align="center">12,56 % </td><td class="has-text-align-center" data-align="center">≈ 05,35 % </td></tr><tr><td class="has-text-align-right" data-align="right">🥉 <strong>Yahoo!</strong></td><td class="has-text-align-center" data-align="center">NC</td><td class="has-text-align-center" data-align="center">04,06 % </td><td class="has-text-align-center" data-align="center">≈ 01,85 %</td></tr><tr><td class="has-text-align-right" data-align="right"><strong>Ecosia</strong></td><td class="has-text-align-center" data-align="center">01,05 % </td><td class="has-text-align-center" data-align="center">01,11 %</td><td class="has-text-align-center" data-align="center">≈ 01,27 %</td></tr><tr><td class="has-text-align-right" data-align="right"><strong>Qwant</strong></td><td class="has-text-align-center" data-align="center">00,70 % </td><td class="has-text-align-center" data-align="center">01,38 %</td><td class="has-text-align-center" data-align="center">≈ 00,93 % </td></tr><tr><td class="has-text-align-right" data-align="right"><strong>DuckDuckGo</strong></td><td class="has-text-align-center" data-align="center">00,55 %</td><td class="has-text-align-center" data-align="center">01,07 % </td><td class="has-text-align-center" data-align="center">≈ 00,72 %</td></tr><tr><td class="has-text-align-right" data-align="right"><strong>part Mobile  / Desktop</strong></td><td class="has-text-align-center" data-align="center"><strong>54,83 %</strong></td><td class="has-text-align-center" data-align="center"><strong>45,17 %</strong></td><td class="has-text-align-center" data-align="center"><strong>100 %</strong></td></tr></tbody></table></figure>



<p class="has-small-font-size">On observe, notamment, <strong>la niche Bing sur Desktop </strong>correspondant à une audience sédentaire, plutôt génération X.</p>



<p class="has-base-2-background-color has-background">Même s'ils demeurent <strong>20 fois moins imposants que Google</strong>, <strong>Bing et Yahoo</strong> occupent les deux autres places du podium.</p>



<p>➡️ Il faut <strong>pondérer ces résultats </strong>car ces deux éditeurs (Microsoft pour Bing) pratiquent <strong>le dumping marketing </strong>:</p>



<ul class="wp-block-list">
<li><strong>Bing est le moteur par défaut </strong>installé sur le navigateur <strong>Edge de Microsoft Windows.</strong> On est jamais mieux servi que par soi-même. Même si l'UE oblige désormais la firme américaine à <strong>donner le choix lors de l'installation</strong>, une partie conséquente des utilisateurs valident toujours les choix par défaut.</li>



<li><strong>Yahoo est partenaire de McAfee</strong>, un célèbre antivirus leader du marché, qui vous propose de <strong>sécuriser votre connexion internet</strong> (un clic suffit) sans vous prévenir que vous allez c<strong>hanger de moteur de recherche.</strong> Hé oui ! <strong>Yahoo remplace Google</strong>, même sous Chrome.</li>
</ul>



<p class="callout rouge has-base-2-background-color has-background">😒 <strong>C'est juste minable </strong>tellement c'est sournois (excusez moi, je ne trouve pas d'autres mots) mais ces deux firmes nous ont habitués à pire encore.</p>



<p>Heureusement, d'autres pensent différemment. On citera <a href="https://www.ecosia.org/" target="_blank" rel="noreferrer noopener">Ecosia </a>qui s'engage à investir la plus grande part de ses bénéfices dans <strong>l'action écologique</strong>, ou <a href="https://duckduckgo.com/" target="_blank" rel="noreferrer noopener">Duck-Duck-Go</a> qui empêche <strong>le traçage de vos données</strong> et le hameçonnage.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="595" src="https://st9ph.fr/wp-content/uploads/2026/01/image-51-1024x595.png" alt="" class="wp-image-32402" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-51-1024x595.png 1024w, https://st9ph.fr/wp-content/uploads/2026/01/image-51-300x174.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-51-768x446.png 768w, https://st9ph.fr/wp-content/uploads/2026/01/image-51.png 1195w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">le bilan financier d'Ecosia, mois par mois,  sur son blog.</figcaption></figure>



<figure class="wp-block-image size-full"><img decoding="async" width="986" height="319" src="https://st9ph.fr/wp-content/uploads/2026/01/image-52.png" alt="" class="wp-image-32403" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-52.png 986w, https://st9ph.fr/wp-content/uploads/2026/01/image-52-300x97.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-52-768x248.png 768w" sizes="(max-width: 986px) 100vw, 986px" /><figcaption class="wp-element-caption">La Promesse de Doc-Doc-Go dans le footer de sa page d'accueil</figcaption></figure>



<p class="has-text-align-center has-accent-color has-text-color has-link-color has-medium-font-size wp-elements-a59757c4a7955e2ee3f4bdbe36b0ab85">Mais, voilà, <strong>Google reste le géant qui écrase tous les autres</strong>, et dans <strong>nos stratégies marketing</strong>, c'est à lui qu'on va s'intéresser <strong>en premier pour notre référencement</strong>.</p>



<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<p><strong>Le contexte international tendu entre l'Europe et les Etats-Unis </strong>(administration Trump) cumulée au danger d'<strong>hégémonie des GAFAM</strong> contre laquelle tente de lutter l'UE font que les entreprises essaient de plus en plus de<strong> trouver des alternatives à la dépendance aux outils américains</strong>. Fin mars 2026, <strong>la part Google tombe à 87 %</strong> (-6 pts), la plus basse constatée durant la décennie ! </p>



<p class="has-small-font-size">Ajout du 2 avril 2026</p>
</div></div>



<!-- DÉBUT TITRE CHAPITRE -->
<style>
.chapter-title { display: flex; align-items: stretch; margin: 1.7rem 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.chapter-number { background: #1e73be; color: #fff; font-weight: 700; font-size: 2.8rem; padding: 0 1.1rem; display: flex; align-items: center; justify-content: center; }
.chapter-content { padding: 1.3rem 1.5rem; width: 100%; }
.chapter-heading { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.chapter-logo { width: 42px; height: 42px; flex-shrink: 0; display:block; }
.chapter-logo img { width: 100%; height: 100%; object-fit: contain; }
.chapter-content h2 { margin: 0; font-size: 2.1rem; font-weight: 700; color: #1e73be; }
.chapter-points { margin: 0; padding-left: 0; list-style: none; }
.chapter-points li { margin-bottom: 0.35rem; color: #444; font-size: 0.95rem; line-height: 1.45; }
.chapter-points li::before { content: "🔹 "; }
</style>
<div class="chapter-title">
<div class="chapter-number">1</div>
<div class="chapter-content">
<div class="chapter-heading">
<a class="chapter-logo" href="https://st9ph.fr" target="_blank" rel="noopener">
<img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-ico-sansTxt.png" alt="Logo">
</a>
<h2>Le référencement naturel (SEO)</h2>
</div>
<ul class="chapter-points"><li>Maillage (Linking)</li><li>Contenu & mots clés</li><li>Règles de conception et traçage</li></ul>
</div>
</div>
<!-- FIN TITRE CHAPITRE -->


<div style="max-width: -moz-fit-content; " class="wp-block-ub-table-of-contents-block ub_table-of-contents" id="ub_table-of-contents-710fa3b5-2a4b-46ed-88b3-a7c2c0a6e6c7" data-linktodivider="false" data-showtext="show" data-hidetext="hide" data-scrolltype="auto" data-enablesmoothscroll="false" data-initiallyhideonmobile="false" data-initiallyshow="true"><div class="ub_table-of-contents-header-container" style="">
			<div class="ub_table-of-contents-header" style="text-align: left; ">
				<div class="ub_table-of-contents-title" style=""></div>
				<div class="ub_table-of-contents-header-toggle">
			<div class="ub_table-of-contents-toggle" style="">
			 [<a class="ub_table-of-contents-toggle-link" href="#" style="">hide</a>]
			</div>
		</div>
			</div>
		</div><div class="ub_table-of-contents-extra-container" style="">
			<div class="ub_table-of-contents-container ub_table-of-contents-1-column ">
				<ul style=""><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#1-11-%E2%9A%99%EF%B8%8F-le-maillage-linking-" style="">🔹1.1 | ⚙️ Le maillage (linking)</a><ul><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#2-%E2%9E%A1%EF%B8%8F-maillage-interne-et-externe-referal-vos-autres-sites-" style="">➡️ Maillage interne et externe Referal (vos autres sites)</a></li><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#3-%E2%9E%A1%EF%B8%8F-liens-externes-purs-afiliate" style="">➡️ Liens externes purs (Afiliate)</a></li></ul></li><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#4-12-%E2%9A%99%EF%B8%8F-pertinence-du-contenu-et-des-mots-cl%C3%A9s-" style="">🔹1.2 | ⚙️ pertinence du contenu et des mots clés</a><ul><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#5-%E2%9E%A1%EF%B8%8Fbalises-choix-de-mots-cl%C3%A9s-et-longues-traines" style="">➡️Balises, choix de mots clés et longues traines</a></li><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#6-%E2%9E%A1%EF%B8%8F-pertinence-des-contenus" style="">➡️ Pertinence des contenus</a></li></ul></li><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#7-13-%E2%9A%99%EF%B8%8F-r%C3%A8gles-de-conception-et-tra%C3%A7age-" style="">🔹1.3 | ⚙️ règles de conception et traçage</a><ul><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#8-%E2%9E%A1%EF%B8%8F-d%C3%A9velopper-light" style="">➡️ Développer "light"</a></li><li style=""><a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/#9-%E2%9E%A1%EF%B8%8F-laissez-google-entrer-dans-votre-backoffice" style="">➡️ laissez Google entrer dans votre backoffice</a></li></ul></li></ul>
			</div>
		</div></div>


<p>l'algorithme qui décide de votre classement<strong> </strong>(avant ou après vos concurrents) en SERP sur expression de mots clés est en<strong> fait un score</strong> ! Oui, c'est une note qui décide de votre <strong>Ranking</strong>, cad si vous serez devant ou derrière.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-53.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-base-2-background-color has-background"><strong>L'algorithme est tenu secret,</strong> mais c'est un secret de polichinelle. Il suffit de lancer<strong> le lighthouse </strong>(sous Chrome) en clic droit - inspecter - menu à chevrons &gt;&gt;- lancer l'analyse , <strong>pour obtenir le score </strong>de n'importe quelle page html.</p>



<p>Ci-dessous, le score de ce blog :</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p class="has-text-align-right has-base-2-background-color has-background">➡️ Si vous n'êtes pas <strong>en vert partout,</strong> est <strong>au dessus de 95</strong>, renoncez à l'espoir d'être en page 1 🥇en SEO</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="538" height="192" src="https://st9ph.fr/wp-content/uploads/2026/01/image-54.png" alt="" class="wp-image-32408" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-54.png 538w, https://st9ph.fr/wp-content/uploads/2026/01/image-54-300x107.png 300w" sizes="auto, (max-width: 538px) 100vw, 538px" /></figure>
</div>
</div>



<p>Bon, <strong>pour moi, "c'est mort" </strong>! Mais le pire, c'est que <strong>cela m'arrange bien </strong>! </p>



<p class="has-base-2-background-color has-background">Je n'ai pas envie d'être <strong>trop visible</strong> : <strong>si mon trafic augmente trop,</strong> je devrais <strong>passer à un abonnement plus cher </strong>auprès de mon provider <strong>pour continuer à espérer une bande passante suffisante </strong>pour "accueillir" tout le monde sans que cela ne rame (<strong>lenteurs de chargement</strong>)  !</p>



<p>Vous pouvez voir le détail de l'analyse (c'est en anglais) et <strong>concentrons nous sur la note de SEO </strong>(puisque c'est le sujet) :</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="502" height="288" src="https://st9ph.fr/wp-content/uploads/2026/01/image-55.png" alt="" class="wp-image-32409" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-55.png 502w, https://st9ph.fr/wp-content/uploads/2026/01/image-55-300x172.png 300w" sizes="auto, (max-width: 502px) 100vw, 502px" /></figure>



<p class="has-text-align-center">😒 Cette seule "faute" me coute 8 pts / 100 !</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p>Il s'agit d'une seule erreur, en fait, <strong>un lien qui n'est pas scannable</strong> (crawlable), cad que <strong>Google ne peut pas l'analyser</strong>.</p>



<p class="has-text-align-center has-base-2-background-color has-background">ℹ️ Sauf que c'est juste <strong>une balise (ancre) de positionnement </strong>(qui permet de <strong>conserver le header </strong>quand vous scrollez vers le bas), et que <strong>je n'y peux rien</strong> sauf à annuler cette fonctionnalité !</p>
</div>
</div>



<p>👉🏻 Mais voilà, <strong>il faut choisir</strong> ! Si vous voulez <strong>passez devant vos concurrents</strong> sans recourir au SEA (et payer), il vous faudra <strong>un meilleur score que lui</strong> et, donc, <strong>vous plier aux règles de Google</strong> !</p>



<p>Ci-dessous, <strong>une vidéo</strong> du <a href="https://developers.google.com/search/">Google Search Cent</a><a href="https://developers.google.com/search/" target="_blank" rel="noreferrer noopener">r</a><a href="https://developers.google.com/search/">al </a>(en anglais, sorry !) qui explique <strong>le crawling </strong>⏱️(6'49) :</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="How Google Search crawls pages" width="900" height="506" src="https://www.youtube.com/embed/JuK7NnfyEuc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<p class="has-base-2-background-color has-background">Idem <strong>en performances</strong>, ma nouvelle manie de <strong>carrousels d'articles</strong> sur la page d'accueil et dans le bandeau de droite quand vous cliquez sur un article ou une page, augmente <strong>la charge de travail du navigateur </strong>et nuit à la rapidité de chargement de l'ensemble.</p>



<p>➡️ Pour <strong>résumer les éléments de notation,</strong> on peut définir <strong>trois grandes familles de critères </strong>avec chacune deux divisions :</p>



<ul class="wp-block-list">
<li class="has-medium-font-size">🪢 Le <strong>Linking</strong> (maillage)</li>
</ul>



<p>Cela consiste à favoriser le rebond interne et externe afin de proposer une expérience à la fois bien pilotée et riche d'expériences</p>



<ul class="wp-block-list">
<li class="has-medium-font-size">📦 Le <strong>contenu</strong></li>
</ul>



<p>Il doit correspondre à une logique d'appel (mots clés) et proposer à la fois de la pertinence, de l'originalité, de l'authenticité, de la richesse informative ...</p>



<ul class="wp-block-list">
<li class="has-medium-font-size">🛠️ La <strong>technique</strong></li>
</ul>



<p>Votre contenu doit respecter <strong>des règles de conception</strong> et <strong>de fluidité</strong> qui permettront de le référencer et de le visiter <strong>sans difficultés</strong> ni <strong>pour le visiteur</strong>, ni <strong>pour son navigateur</strong>.</p>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Ne pas confondre 🖥️<strong> navigateur </strong>et 🔎 <strong>moteur de recherche</strong></summary>
<p>Le <strong>navigateur</strong>, c'est <strong>votre logiciel </strong>qui vous <strong>permet de faire des recherches </strong>(Chrome, Opera, Edge, Firefox ...) alors que <strong>le moteur,</strong> c'est <strong>l'outil à l'intérieur du navigateur</strong> qui <strong>fait la recherche</strong> (Google, Bing, Ecosia ...). Ex : Chrome peut très bien faire des recherches avec Bing si vous le reparamétrez et Edge des recherches sur Google ... tout est possible.</p>
</details>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="633" height="635" src="https://st9ph.fr/wp-content/uploads/2026/01/Scem-seo-small.jpg" alt="" class="wp-image-36603" srcset="https://st9ph.fr/wp-content/uploads/2026/01/Scem-seo-small.jpg 633w, https://st9ph.fr/wp-content/uploads/2026/01/Scem-seo-small-300x300.jpg 300w, https://st9ph.fr/wp-content/uploads/2026/01/Scem-seo-small-150x150.jpg 150w" sizes="auto, (max-width: 633px) 100vw, 633px" /></figure>
</div>


<h3 class="wp-block-heading" id="1-11-%E2%9A%99%EF%B8%8F-le-maillage-linking-" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">1.1 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""> ⚙️ <strong>Le maillage (linking)</strong></h3>



<h4 class="wp-block-heading has-accent-color has-text-color has-link-color has-medium-font-size wp-elements-4e8414b40432b3d4c926cef2daf5f0fa" id="2-%E2%9E%A1%EF%B8%8F-maillage-interne-et-externe-referal-vos-autres-sites-">➡️ <strong>Maillage interne</strong> et externe Referal (vos autres sites) </h4>



<p>Ci-dessous, <strong>un focus sur les 13 liens de la page d'accueil</strong> de ce blog (avant le développement du menu) :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/maillage-st9ph-1-1024x784.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<ol class="wp-block-list">
<li>le <strong>logo cliquable</strong>, toujours visible, qui <strong>permet un retour à l'accueil,</strong> où que l'on soit</li>



<li><strong>le menu</strong> qui permet de développer <strong>tous les contenus </strong>classés en <strong>thématiques </strong>et en <strong>rubriques </strong></li>



<li>Le <strong>moteur de recherche interne </strong>qui permet de trouver des contenus <strong>par saisie de mots clés</strong></li>



<li><strong>le nuage de mots</strong> qui a la même fonction que le moteur mais, cette fois,<strong> en suggérant des mots clés</strong>, plus ou moins gros selon qu'ils apparaissent souvent ou moins.</li>



<li>Un <strong>carrousel d'articles</strong> du plus récent au plus ancien qui <strong>permet de suggérer des lectures</strong> parmi les contenus</li>



<li>un <strong>CTA sur chaque vignette</strong> d'aperçu du carrousel pour<strong> lire la suite </strong>du résumé d'aperçu.</li>



<li><strong>Des sélecteurs pour piloter le carrousel </strong>en dehors de son mouvement récurent de gauche à droite. (Un survol le fige, mais c'est parfois trop tard pour une vignette disparue à gauche)</li>



<li><strong>un maillage</strong> dit "Referal" vers <strong>d'autres sites st9ph </strong>(mes pages sur <strong>les réseaux</strong>, ma f<strong>iche Google My Business </strong>et l'activation du<strong> flux RSS</strong> st9ph dans votre agrégateur.</li>



<li>la possibilité de <strong>s'abonner</strong>, de <strong>se connecter</strong>, de <strong>se déconnecter</strong> à ce blog</li>



<li>les liens vers <strong>les pages légales</strong></li>



<li>la possibilité d'<strong>atteindre les sites secondaires </strong>(boutique pédagogique principale et secondaire, le labo WordPress)</li>



<li>un bouton de "<strong>retour en haut</strong>" pour éviter de scroller longtemps quand on est descendu bas.</li>



<li>L'accès au <strong>consentement des cookie</strong>s</li>
</ol>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="835" height="645" src="https://st9ph.fr/wp-content/uploads/2026/01/liens-st9ph-1.png" alt="" class="wp-image-32424" srcset="https://st9ph.fr/wp-content/uploads/2026/01/liens-st9ph-1.png 835w, https://st9ph.fr/wp-content/uploads/2026/01/liens-st9ph-1-300x232.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/liens-st9ph-1-768x593.png 768w" sizes="auto, (max-width: 835px) 100vw, 835px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>Sur le schéma ci-contre, <strong>le maillage Referal </strong>montre le rôle central (<strong>pivot</strong>) du blog sur l'ensemble des sites St9ph.</p>



<p class="has-base-2-background-color has-background">ℹ️ On peu<strong>t tagger les liens </strong>pour mieux repérer <strong>les sources de trafic</strong>. Si vous voyez des urls se terminant par "<strong>?utm_source=</strong>" <strong>+ le nom d'un site</strong>, c'est que <strong>votre lien va enrichir un tracker</strong>. Mais le mieux est tout de même de s'en remettre <strong>à Google analytics </strong>:</p>



<p></p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p>Ici, dans la rubrique "<strong>acquisition de trafic</strong>", je peux observer sur la eshop <strong>les flux entrants</strong>, quels <strong>pages vues</strong>, combien de temps, distinguer les nouveaux des fidèles, les <strong>produits populaires,</strong> les scrolls, les paniers ... tout ce que je veux, en fait ! 😯Même des trucs auxquels je n'aurais pas pensé !</p>



<p></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-59.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-60.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>En observant les KPI du maillage, je peux :</p>



<ul class="wp-block-list">
<li> <strong>renforcer les liens</strong> qui ne jouent pas le rôle que j'escomptais (les rendre <strong>plus visibles</strong>, les mettre <strong>ailleurs</strong>)</li>



<li><strong>Adapter la navigation</strong> des mes sites (menus, disposition, outils d'accompagnement) ...</li>



<li>Mettre en place des <a href="https://blog.hubspot.fr/website/parametres-utm" target="_blank" rel="noreferrer noopener">trackers UTM</a> pour <strong>suivre mes campagnes </strong>et surveiller leurs incidences.</li>
</ul>



<p class="has-base-2-background-color has-background">Ci-contre, ce graphique me permet de <strong>suivre la fidélité de mon audience </strong>mais aussi <strong>les pics de fréquentations.</strong> Utilisez les pour mesurer<strong> l'efficacité de vos relances</strong> (promo mail, notif de push ...)</p>



<p></p>
</div>
</div>



<p>Le <strong>tableau par pages </strong>(ici, des fiches produits) donne une vue globale de la popularité des liens maillés :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-61.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p>Ci-contre, <strong>le tableau de bord du JetPack</strong> du CMS WordPress de mon blog <strong>en back office </strong>me procure aussi <strong>des stats (moins riches qu'Analytics)</strong></p>



<p class="has-text-align-center has-base-2-background-color has-background">➡️ C'est un moyen aussi de <strong>contrôler mes flux</strong> et <strong>la popularité de mes contenus</strong></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-62.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-64.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p>➡️ On voit ici que <strong>les rebonds </strong>d'aujourd'hui ce focalisent en interne sur <strong>des ressources complémentaires</strong> (un tableur et 3 images pour deux tutos, l'un sur Excel, l'autre sur 3D Builder)</p>



<p>➡️ on voit aussi l<strong>es liens de maillage externes </strong>mais on en reparlera plus tard</p>
</div>
</div>



<p>Pour résumer, votre <strong>score SEO</strong> en termes de <strong>maillage interne</strong> dépendra donc :</p>



<ul class="wp-block-list">
<li>⛔de l'absence d'impasses (pages sans rebond interne) ou de<strong> pages en erreur</strong> (en maintenance, supprimées)</li>



<li>🔗 du<strong> panel de canaux de rebond </strong>disponibles (si vous avez les 5, c'est top)</li>



<li>👥du <strong>trafic d'audience</strong>. La<strong> durée de sessions</strong> compte d'ailleurs plus que <strong>le nombre de visiteurs </strong>(et pour cause, si beaucoup de visiteurs atterrissent sur votre site mais repartent aussitôt, c'est qu'il y'a un problème).</li>



<li>📈 de la <strong>liaison </strong>ou non de votre backoffice<strong> avec Google Analytics </strong>(pour faciliter la tenue des statistiques)</li>
</ul>



<h4 class="wp-block-heading has-medium-font-size" id="3-%E2%9E%A1%EF%B8%8F-liens-externes-purs-afiliate">➡️ Liens externes purs (Afiliate)</h4>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%"><div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="221" height="289" src="https://st9ph.fr/wp-content/uploads/2026/01/image-65.png" alt="" class="wp-image-32443"/></figure>
</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p>Proposer d'<strong>élargir le point de vue</strong>, notamment sur les blogs (vitrine) et les Réseaux, c'est une démarche qui doit aller de soi, pour<strong> proposer un autre regard </strong>que le sien sur un sujet, permettre de rebondir.</p>



<p class="has-base-2-background-color has-background">Google va observer <strong>votre maillage externe </strong>(cad les liens vers des sites étrangers au votre) et a<strong>méliorer votre score </strong>si votre maillage est <strong>riche et systématique</strong>. C'est en effet pour lui <strong>un gage </strong>que l'expérience des googlenautes qui auront choisi votre site dans ses résultats sera<strong> variée et multi-sourcée.</strong></p>



<p></p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>De votre côté aussi, surveillez <strong>le trafic Afiliate entrant</strong> (quels sites vous envoient des visiteurs) afin, pourquoi pas, de les contacter et d<strong>'établir des partenariats (backlink).</strong> Chacun y gagnera à <strong>booster le trafic</strong> de l'autre.</p>



<p class="has-base-2-background-color has-background">Ici, le tableau de bord du Jet Pack de ce blog montr<strong>e les sources entrantes</strong> et l'écrasante<strong> majorité de l'organique</strong> (Qui est en tête, comme toujours ?)</p>



<p></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-66.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>



<p class="has-accent-color has-text-color has-link-color has-medium-font-size wp-elements-0cc9dc7ee5ab9b7c45e5f3254373ce62">👉 Pour les moteurs de recherche, un lien externe est assimilé à une <strong>recommandation</strong> ! </p>



<p>📚 <strong>Source</strong> :<br><a href="https://developers.google.com/search/docs/fundamentals/how-search-works?hl=fr">Google Search Central – <em>How Search Works</em></a></p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-68.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>Vous pouvez également<strong> interroger Google sur l'indexation de vos pages </strong>dans les moteurs en tapant<strong> "site:" + votre nom de domaine</strong>.</p>



<p>Vous aurez alors<strong> un classement des pages en fonction de leur Ranking</strong> avec des résultats parfois surprenantS</p>



<p class="has-base-2-background-color has-background">😗Je me demande un peu ce que ce <strong>vieux sujet d'examen sur Prestashop</strong> fait sur la seconde marche du podium surtout qu'il n'est plus accessible mais c'est comme ça !</p>



<p></p>
</div>
</div>



<p>🗺️Un <strong>Sitmaps </strong>(carte ou plan du site) aussi, peut <strong>aider les Bots à bien référencer l'architecture de votre site</strong>. C'est un peu technique à faire mais <strong>il y'a des outils pour cela</strong>. Plus d'infos sur <a href="https://developers.google.com/search/docs/crawling-indexing/sitemaps/overview?hl=fr" target="_blank" rel="noreferrer noopener">le site développeur Google</a>.</p>



<h3 class="wp-block-heading" id="4-12-%E2%9A%99%EF%B8%8F-pertinence-du-contenu-et-des-mots-cl%C3%A9s-" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">1.2 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""> ⚙️ <strong>pertinence du contenu et des mots clés</strong></h3>



<h4 class="wp-block-heading has-accent-color has-text-color has-link-color wp-elements-194249878febdade4d7a0e9744146946" id="5-%E2%9E%A1%EF%B8%8Fbalises-choix-de-mots-cl%C3%A9s-et-longues-traines">➡️Balises, choix de mots clés et longues traines</h4>



<p>Imaginons que vous soyez <strong>une vendeuse de porte-clés artisanaux </strong>et que vous vouliez faire <strong>la promo de votre boutique </strong>sur votre blog.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="736" height="481" src="https://st9ph.fr/wp-content/uploads/2026/01/image-69.png" alt="" class="wp-image-32454" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-69.png 736w, https://st9ph.fr/wp-content/uploads/2026/01/image-69-300x196.png 300w" sizes="auto, (max-width: 736px) 100vw, 736px" /></figure>
</div>


<p class="has-text-align-center">Vous allez sans doute choisir "<strong>porte-clés artisanaux</strong>" comme mots clés, j'imagine ?</p>



<p>👉🏻 Déjà, évitez de les séparer "porte" "clés" et "artisanaux"</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="504" height="677" src="https://st9ph.fr/wp-content/uploads/2026/01/image-70.png" alt="" class="wp-image-32455" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-70.png 504w, https://st9ph.fr/wp-content/uploads/2026/01/image-70-223x300.png 223w" sizes="auto, (max-width: 504px) 100vw, 504px" /><figcaption class="wp-element-caption">vous risquez d'attirer des internautes qui veulent plutôt acheter des portes ....</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="437" height="619" src="https://st9ph.fr/wp-content/uploads/2026/01/image-71.png" alt="" class="wp-image-32456" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-71.png 437w, https://st9ph.fr/wp-content/uploads/2026/01/image-71-212x300.png 212w" sizes="auto, (max-width: 437px) 100vw, 437px" /><figcaption class="wp-element-caption">... ou qui veulent faire refaire leurs clés ...</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="538" height="655" src="https://st9ph.fr/wp-content/uploads/2026/01/image-72.png" alt="" class="wp-image-32457" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-72.png 538w, https://st9ph.fr/wp-content/uploads/2026/01/image-72-246x300.png 246w" sizes="auto, (max-width: 538px) 100vw, 538px" /><figcaption class="wp-element-caption">... ou qui cherchent des salons artisanaux !</figcaption></figure>
</div>
</div>



<p class="callout rouge">⚠️ Le risque, c'est <strong>le rebond,</strong> cad <strong>les internautes </strong>qui vont arriver sur son site en cherchant une porte à refaire, un serrurier ou le prochain salon de l'artisanat et <strong>qui vont repartir aussitôt,</strong> déçus de leur atterrissage sur ce blog qui parle de porte-clés. <strong>Google va l'observer </strong>et <strong>descendre </strong>(en flèche) <strong>le Ranking </strong>de votre site, déduisant que <strong>vos mots clés étaient très mal choisis.</strong></p>



<p>👉🏻 Premier reflexe : faites <strong>des chaines de mots </strong>clés qu'on appelle <strong>longues traines</strong> : "<strong>porte-clés artisanaux</strong>"</p>



<p class="has-text-align-center has-medium-font-size">🤔 Mais, tout cela, ça se vérifie ! Ne les inscrivez surtout <strong>pas à l'intuition</strong> !</p>



<p>🖥️ <strong><a href="https://trends.google.fr/" target="_blank" rel="noreferrer noopener">Google Trends</a></strong> est un outil qui permet de <strong>vérifier la popularité et la pertinence des mots clés</strong>. Ici, je croise en temps réel (sur douze mois) le nombre de recherches pour "<strong>porte-clés</strong>", "<strong>Artisanat</strong>" et "<strong>idée cadeau</strong>".</p>



<p class="has-text-align-center has-small-font-size"><a href="https://trends.google.fr/trends/explore?geo=FR&amp;q=%2Fm%2F03lnq3,Artisanat,id%C3%A9e%20cadeau&amp;hl=fr" target="_blank" rel="noreferrer noopener">Reconstituer la recherche</a></p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="817" height="433" src="https://st9ph.fr/wp-content/uploads/2026/01/image-89.png" alt="" class="wp-image-32492" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-89.png 817w, https://st9ph.fr/wp-content/uploads/2026/01/image-89-300x159.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-89-768x407.png 768w" sizes="auto, (max-width: 817px) 100vw, 817px" /></figure>



<p>ℹ️ Ci-dessus, <strong>les résultats pour 2025</strong> (j'écris cette article en janvier 2026) mais cliquer sur "reconstituer la recherche" pour avoir <strong>les 12 derniers mois.</strong> On observe que :</p>


<ul style="padding-left: 1.1em; text-align: left; --ub-list-item-icon-top: 3px;; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23000000&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); --ub-list-item-fa-li-top: 3px; --ub-list-item-spacing: 0px; column-count: 1; --ub-list-mobile-column-count: 1; " class="wp-block-ub-styled-list ub_styled_list" id="ub_styled_list-36b45d04-9e30-43c9-a1eb-e65986fc6d65">
<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-6b1cc8f6-23e1-48ad-8022-604cbbf691b1">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>porte-clés </strong>est un (relatif)<strong> bon choix</strong> (tapé au moins 40 fois par jour)</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-96cb9d8b-01d4-4ebb-9eeb-cc83718be06a">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Idée cadeau</strong> peut-être <strong>un booster ponctuellement</strong> (<strong>évènements marketing</strong> comme fête des pères / mères, mais surtout Noel)</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 384 512&quot;&gt;&lt;path fill=&quot;%23cf2e2e&quot; d=&quot;M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-569d451c-082a-4d9b-9abe-a5157d886daa">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 384 512"><path fill="#cf2e2e" d="M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z"></path></svg>
				</span>
				<span class="ub_list_item_text">On peut oublier "<strong>artisanat</strong>" dans notre traine car il est vraiment confidentiel.</span>
			</div>
			
		</li>
</ul>


<p>ℹ️ Pour info :</p>



<figure class="wp-block-table"><table><thead><tr><th>Oubliez ...</th><th>Si vous tapez ....</th><th>... seront englobés aussi :</th></tr></thead><tbody><tr><td>les accents, les majuscules</td><td> célèbre  </td><td>celebre, célebre, celèbre</td></tr><tr><td>le singulier / pluriel<br>Masculin / féminin</td><td>chevaux sauvages<br>compris</td><td>cheval sauvage<br>comprise</td></tr><tr><td>les liaisons, la polysémie</td><td>porte-clé</td><td>porte cle, porte-clefs, porte clef ...</td></tr><tr><td>les paronymes</td><td> +, @, auto</td><td>plus, arobase, automobile</td></tr><tr><td>les métonymes </td><td>Frigidaire, Frigo</td><td>réfrigérateur</td></tr></tbody></table></figure>



<p>🖥️ <a href="https://fr.semrush.com/analytics/keywordmagic/" target="_blank" rel="noreferrer noopener"><strong>Semrush</strong></a> <a href="https://fr.semrush.com/analytics/keywordmagic/"></a>(celui qui équipe Yoast SEO dans WordPress) est un <strong>autre outil de recherche</strong> de pertinence de mots clés :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-73-1024x388.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p><em>Il pourra nous servir aussi en SEA car il nous indique le Cout par Clic estimé (CPC), c'est à dire ce que l'on devra payer à chaque clic d'un googlenaute sur notre lien sponsorisé si on veut être devant tout le monde.</em></p>



<p class="has-medium-font-size">👉🏻 on sait donc :</p>



<ul class="wp-block-list">
<li> l'<strong>association de requête liée</strong> (souvent une marque, une action comme "acheter" ou un lieu)</li>



<li>la <strong>nature de la recherche</strong> (I pour <strong>informationnelle</strong>, C pour <strong>commerciale </strong>et T pour <strong>transactionnelle</strong>)</li>



<li>Le <strong>volume </strong>de recherche</li>



<li>le <strong>Keyword Diagnostic</strong> (s'il est facile ou pas, dans quel contexte et registre l'utiliser)</li>



<li>sa <strong>valeur sponsorisée</strong> au CPC (plus il sera courant, plus il sera cher)</li>
</ul>



<p>On peut aussi accéder à <strong>la SERP de résultats </strong>(pour voir où sont les concurrents).</p>



<p>👉 <strong><mark style="background-color:rgba(0, 0, 0, 0);color:#e69049" class="has-inline-color">Ubersuggest</mark></strong> est un excellent outil aussi <strong>pour le choix des bons mots clé</strong>. <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">On le verra dans la section SEA</mark> car c'est surtout un logiciel (😒 payant) qui permet d'évaluer <strong>le Cout par Clic</strong> (CPC) mais ci-dessous, il analyse non seulement <strong>mon Ranking</strong> (la position en SERP des mots clés que j'ai choisis) mais <strong>en suggère d'autres</strong> plus demandés :</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="340" src="https://st9ph.fr/wp-content/uploads/2026/01/image-342-1024x340.png" alt="" class="wp-image-33585" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-342-1024x340.png 1024w, https://st9ph.fr/wp-content/uploads/2026/01/image-342-300x100.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-342-768x255.png 768w, https://st9ph.fr/wp-content/uploads/2026/01/image-342.png 1105w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="has-base-2-background-color has-background">Ici, j'évalue comment faire évoluer <strong>ma stratégie de mots-clés </strong>sur un tuto sur <a href="https://st9ph.fr/formulaires-wordpress/">contact form 7,</a> un plug-in de formulaires pour <img loading="lazy" decoding="async" width="19" height="18" class="wp-image-33543" style="width: 19px;" src="https://st9ph.fr/wp-content/uploads/2026/01/image-336.png" alt="">WordPress. <strong>Il toile un faisceau</strong> en se basant sur le CQQCOCP pour proposer des <strong>traines plus performantes</strong>.</p>



<p>Il propose aussi <strong>un récapitulatif</strong> (si on aime pas les toiles 🕸️) basé sur un <strong>croisement de mon contenu et sur des recherches populaires</strong> :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-343-1024x245.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p>👉 L'outil<strong> IA Writer</strong> d' <strong><mark style="background-color:rgba(0, 0, 0, 0);color:#e69049" class="has-inline-color">Ubersuggest</mark></strong> permet même de<strong> réécrire ou redéfinir un contenu</strong> pour l'<strong>optimisation SEO</strong>.</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-344-1024x258.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-medium-font-size">🔗<strong> Pensez</strong> aussi <strong>aux autres balises</strong> que vos mots clés (keywords) :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-74.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p>la <strong>zone Meta du code html,</strong> un <strong>ensemble de capsules ou balises</strong> contenant des<strong> "méta" informations </strong>(supérieures), sont l<strong>es seules lues par les Bots</strong> et contribuent grandement à votre référencement en plus des keywords sur lesquels je ne reviens pas (voir plus haut). Elles sont <strong>les seules </strong>aussi <strong>à apparaitre sur les SERP</strong> :</p>



<ul class="wp-block-list">
<li>la <strong>balise titre</strong> (Header) qui contient votre <strong>H1,</strong> parfois appelé aussi <strong>titre SEO</strong></li>



<li>La <strong>méta description,</strong> <strong>résumé et CTA </strong>de votre contenu sur la SERP</li>



<li>le <strong>permalien </strong>ou <strong>Slug </strong>(la terminaison de votre URL) qui doit être descriptive, elle aussi, du contenu (ne regardez pas là-haut, dans la barre d'url, mes slugs sont rarement SEO)</li>



<li>La <strong>balise Alt </strong>du<strong> texte alternatif </strong>de vos illustrations (pour Google images et vidéos)</li>



<li>vos <strong>tags</strong>, notamment pour raccorder <strong>avec les réseaux sociaux.</strong></li>
</ul>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>😗hum ? <strong>Un tag et un hashtag</strong>, c'est pareil ?</summary>
<p>Presque :<strong> un tag </strong>en @ vise<strong> une marque ou une personne</strong> @st9ph par exemple. <strong>Un hashtag </strong>en # vise<strong> un thème, un sujet</strong> #MakeMeBuy par exemple</p>
</details>



<p class="has-base-2-background-color has-background">Je vous renvoie sur <strong>les articles WordPress et Prestashop relatifs au </strong><a href="https://st9ph.fr/?s=SEO" target="_blank" rel="noreferrer noopener"><strong>SEO </strong>sur le blog</a> pour en savoir plus sur <strong>la manière de les alimenter correctement</strong>.</p>



<h4 class="wp-block-heading has-accent-color has-text-color has-link-color wp-elements-9b95f984c1005aa9411d71dec4b6d4dd" id="6-%E2%9E%A1%EF%B8%8F-pertinence-des-contenus">➡️ Pertinence des contenus</h4>



<p>On ne va pas refaire ici <strong>toute une approche </strong>sur ce qui marche en <strong>marketing </strong>et je vous renvoie comme tout à l'heure sur les articles qui en parlent sur le blog. Non, dans cette partie, <strong>voyons juste ce qu'il faut faire et éviter de faire pour être bien référencé</strong> :</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="951" height="363" src="https://st9ph.fr/wp-content/uploads/2026/01/image-75.png" alt="" class="wp-image-32465" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-75.png 951w, https://st9ph.fr/wp-content/uploads/2026/01/image-75-300x115.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-75-768x293.png 768w" sizes="auto, (max-width: 951px) 100vw, 951px" /></figure>


<div class="ub-styled-box ub-number-box wp-block-ub-styled-box" id="ub-styled-box-5f7769ca-c8c8-475d-96c4-aff048eebed4">
<div class="ub-number-panel" style="border-color: #000000; " id="ub-styled-box-numbered-box-column-864adfdf-bd0e-43b3-95bb-67580cd6b86a">
			<div class="ub-number-container" style="background-color: #ddc79a; ">
				<p class="ub-number-display" style="color: #000000; ">1</p>
			</div>
			<p class="ub-number-box-title" style="text-align: center; ">de l'humain <br>pour l'humain</p>
			<div class="ub-number-box-body" style="text-align: left; ">

<p class="has-text-align-center">Insérer du <strong>Chat GPT en guise  de contenu</strong>, ce n'est pas du jeu ! Google a horreur (à juste titre) de <strong>ce qui n'est pas authentique</strong>. Si c'est pour <strong>dupliquer ce qui existe déjà</strong>, à quoi bon augmenter votre Ranking ?</p>

</div>
		</div>

<div class="ub-number-panel" style="border-color: #000000; " id="ub-styled-box-numbered-box-column-ac065fbc-3d52-49b0-80e8-3d05762f80ed">
			<div class="ub-number-container" style="background-color: #ddc79a; ">
				<p class="ub-number-display" style="color: #000000; ">2</p>
			</div>
			<p class="ub-number-box-title" style="text-align: center; ">de l'original et du meilleur</p>
			<div class="ub-number-box-body" style="text-align: left; ">

<p class="has-text-align-center">Mettez <strong>votre touche</strong> à votre contenu, ayez <strong>votre style</strong>. Citez et backlinkez les autres si vous voulez mais apportez <strong>votre contribution réelle</strong>, votre <strong>valeur ajoutée</strong>, <strong>votre spécificité</strong>.</p>

</div>
		</div>

<div class="ub-number-panel" style="border-color: #000000; " id="ub-styled-box-numbered-box-column-1d32746f-81e5-4011-9003-e62a815cd2dd">
			<div class="ub-number-container" style="background-color: #ddc79a; ">
				<p class="ub-number-display" style="color: #000000; ">3</p>
			</div>
			<p class="ub-number-box-title" style="text-align: center; ">Ne cherchez pas le Ranking à tout prix</p>
			<div class="ub-number-box-body" style="text-align: left; ">

<p class="has-text-align-center"><strong>Ne cannibalisez pas</strong> vos mots-clé, <strong>ne radotez pas</strong> vos expressions clés, <strong>ne surchargez pas vos balises </strong>pour donner une indigestion aux bots, ça produira l'effet inverse !</p>

</div>
		</div>
</div>


<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>😗 euh ... ? Cannibaliser ? J'ai un doute !</summary>
<p>Cannibaliser, c'est employer tellement souvent vos keywords que cela entraine une sur indexation de vos pages sur certains mots-clés. Google vous déréférence (pour vous punir) et à vouloir "dévorer" les autres, c'est vous-mêmes que vous avez mangé à la fin !</p>
</details>



<p>La <strong>chek list </strong>du <a href="https://developers.google.com/search/docs/fundamentals/creating-helpful-content?hl=fr" target="_blank" rel="noreferrer noopener">Google Search Central</a> (<em>Creating helpful, reliable, people-first content</em>)<strong> des questions à vous poser </strong>quand vous rédigez un contenu à référencer :</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p>☐ Le contenu répond clairement à <strong>un besoin ou une question</strong> de l’internaute (qui a tapé les mots clés que vous avez choisis)<br>☐ Il apporte une <strong>valeur ajoutée réelle</strong> (méthode, conseil ... )<br>☐ Il est <strong>plus utile ou plus clair</strong> que les contenus concurrents<br>☐ Il est écrit pour un <strong>humain</strong>, pas pour un moteur</p>



<p>☐ Le texte est <strong>clair, fluide et compréhensible</strong><br>☐ Le niveau de langage est <strong>adapté à la cible</strong><br>☐ Les phrases sont <strong>plutôt courtes</strong> et lisibles<br>☐ Le contenu donne envie de <strong>continuer la lecture</strong></p>



<p>☐ Le contenu est bien <strong>structuré avec des titres et sous-titres</strong><br>☐ Les paragraphes sont <strong>courts et aérés</strong><br>☐ Des listes à puces sont utilisées si nécessaire<br>☐ La hiérarchie du contenu est logique<br>☐ La lecture est confortable sur <strong>mobile</strong></p>



<p>☐ Le sujet est traité de manière <strong>complète</strong><br>☐ Les questions principales et secondaires sont <strong>couvertes</strong><br>☐ Le contenu n’est<strong> pas trop court ou superficiel</strong><br>☐ Les informations sont <strong>fiables et vérifiables</strong> (sourcées)</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="369" height="727" src="https://st9ph.fr/wp-content/uploads/2026/01/image-77.png" alt="" class="wp-image-32467" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-77.png 369w, https://st9ph.fr/wp-content/uploads/2026/01/image-77-152x300.png 152w" sizes="auto, (max-width: 369px) 100vw, 369px" /></figure>
</div>
</div>



<p class="has-base-2-background-color has-background">C'est fondamental, <strong>surtout en Vitrine et en Blog</strong>, de proposer quelque chose de différent des autres. Sans quoi, <strong>le premier à vous ignorer </strong>ne sera même pas parmi vos lecteurs, mais ce <strong>sera Google lui-même</strong> !</p>



<h3 class="wp-block-heading" id="7-13-%E2%9A%99%EF%B8%8F-r%C3%A8gles-de-conception-et-tra%C3%A7age-" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">1.3 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""> ⚙️ <strong>règles de conception et traçage</strong></h3>



<h4 class="wp-block-heading has-accent-color has-text-color has-link-color wp-elements-240d8702d3ed41112858787c732d6547" id="8-%E2%9E%A1%EF%B8%8F-d%C3%A9velopper-light">➡️ Développer "light"</h4>



<p>le schéma ci-dessous, de <a href="https://web.dev/" target="_blank" rel="noreferrer noopener">Web Vitals</a> (cliquez sur l'image pour voir l'article), montre les 3 KPI à retenir pour votre Ranking technique :</p>



<ul class="wp-block-list">
<li>le <strong>LCP</strong> (<strong>chargement</strong>) que l'internaute va espérer <strong>en moins de 2.5 s </strong>pour être satisfait</li>



<li>l'<strong>INP</strong> (la<strong> réactivité des liens</strong> une fois entré) en mois de 0.2 s (oui, c'est court)</li>



<li>LE <strong>CLS</strong> (<strong>la charge mémoire</strong>) qui doit pouvoir "éponger" en moins d'<strong>un dixième de secondes</strong></li>
</ul>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-57.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p>Sur <strong>mon blog</strong> (inspecter - menu chevons &gt;&gt; - performances), ça donne ça :</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="525" height="176" src="https://st9ph.fr/wp-content/uploads/2026/01/image-78.png" alt="" class="wp-image-32471" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-78.png 525w, https://st9ph.fr/wp-content/uploads/2026/01/image-78-300x101.png 300w" sizes="auto, (max-width: 525px) 100vw, 525px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="518" height="149" src="https://st9ph.fr/wp-content/uploads/2026/01/image-80.png" alt="" class="wp-image-32473" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-80.png 518w, https://st9ph.fr/wp-content/uploads/2026/01/image-80-300x86.png 300w" sizes="auto, (max-width: 518px) 100vw, 518px" /></figure>



<figure class="wp-block-image size-full is-resized"><img loading="lazy" decoding="async" width="516" height="150" src="https://st9ph.fr/wp-content/uploads/2026/01/image-79.png" alt="" class="wp-image-32472" style="width:524px;height:auto" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-79.png 516w, https://st9ph.fr/wp-content/uploads/2026/01/image-79-300x87.png 300w" sizes="auto, (max-width: 516px) 100vw, 516px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p>👑 <strong>Je suis royal en LCP,</strong> même si le lighthouse me donne un score de <strong>75/100 en global</strong> !</p>



<p class="has-base-2-background-color has-background has-small-font-size">Le javascript, la vidéo 4K en bannière de homepage et autres pop-up peuvent être préjudiciables !</p>



<p><strong>Qui c'est le patron </strong>de l'INP ? On navigue à la vitesse de l'éclair sur st9ph.fr !</p>



<p class="has-base-2-background-color has-background has-small-font-size">Evitez le boutons d'action trop sophistiqués (hoover)</p>



<p>Oh ! <strong>Ce CLS de dingo</strong> ! C'est <strong>les vacances pour les navigateurs </strong>quand on se promène sur mon site !</p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p class="has-base-2-background-color has-background">ℹ️ Vous pouvez bien entendu garder le panneau d'inspection ouvert pour mesurer en temps réel les KPI pendant que vous surfez sur le site comme dans la vidéo ci-contre.</p>



<p>Ca peut vous aider à trouver les pages qui <strong>répondent moins bien que les autres</strong> ou qui provoquent <strong>une surcharge</strong></p>



<p></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-video"><video height="338" style="aspect-ratio: 526 / 338;" width="526" autoplay loop muted src="https://st9ph.fr/wp-content/uploads/2026/01/Enregistrement-2026-01-08-184314.mp4" playsinline></video></figure>
</div>
</div>



<h4 class="wp-block-heading has-accent-color has-text-color has-link-color wp-elements-f8d5400bec37113dcd18d05490108980" id="9-%E2%9E%A1%EF%B8%8F-laissez-google-entrer-dans-votre-backoffice">➡️ laissez Google entrer dans votre backoffice</h4>



<p>Pour le traçage, vous n'aurez pas trop le choix d'<strong>inviter Google Analytics à résider sur votre site.</strong></p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="582" height="703" src="https://st9ph.fr/wp-content/uploads/2026/01/image-82.png" alt="" class="wp-image-32477" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-82.png 582w, https://st9ph.fr/wp-content/uploads/2026/01/image-82-248x300.png 248w" sizes="auto, (max-width: 582px) 100vw, 582px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>C'est du donnant - donnant, en fait :</p>



<ul class="wp-block-list">
<li>vous <strong>donnez accès à vos données</strong> pour aider Google à <strong>collecter les infos</strong> et à<strong>mieux vous référencer</strong></li>



<li>il vous procure <strong>un tableau de bord sensas</strong> avec <strong>tous les outils de suivi dont vous rêviez</strong>. (voir l'image ci- dessous).</li>
</ul>



<p class="has-text-align-center has-base-2-background-color has-background">😮‍💨 Reste à savoir ce qu'il va en faire !</p>



<p>📈 <strong>61 025 boutiques Françaises e-commerce</strong> utilisent <strong>Google Analytics (toutes versions)</strong>. <a href="https://storeleads.app/reports/technology/Google%20Analytics/country/FR?" target="_blank" rel="noreferrer noopener">Store Leads</a></p>



<p>📊 Sur celles équipées de la nouvelle version <strong>Google Analytics 4</strong>, on recense <strong>40 672 installations</strong>.</p>
</div>
</div>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-83-1024x776.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p>Voilà pour ce "petit" tour du SEO qui, je l'espère, aura répondu à toutes les questions que vous ne vous posiez pas sur le référencement. 😉</p>



<p class="has-base-2-background-color has-background">Maintenant qu'on a vu <strong>comment exister "gratuitement"</strong>, parfois, <strong>la concurrence est rude</strong> et un <strong>petit dopage de votre Ranking </strong>contre <strong>une modeste rétribution</strong> de Google, ça peut vous aider à <strong>remonter sur la SERP n° 1</strong></p>



<style>
.chapter-title {
  display: flex;
  align-items: stretch;
  margin: 1.8rem 0;
}

/* Numéro */
.chapter-number {
  background: #1e73be;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}

/* Contenu */
.chapter-content {
  padding: 0.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 4px solid #1e73be;
}

/* H2 avec logo */
.chapter-content h2 {
  margin: 0;
  font-size: 2.05rem;
  font-weight: 700;
  color: #1e73be;
  display: flex;
  align-items: center;
  gap: 0.6rem; /* espace logo / texte */
}

/* Logo carré */
.chapter-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Sous-titre */
.chapter-subtitle {
  margin-top: 0.35rem;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}
</style>

<div class="chapter-title">
  <div class="chapter-number">2</div>
  <div class="chapter-content">
    <h2>
      <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-ico-sansTxt.png"
           alt=""
           class="chapter-icon">
     le référencement sponsorisé (SEA)
    </h2>
    <p class="chapter-subtitle">Booster sa visibilité pour pallier à un ranking SEO insuffisant</p>
  </div>
</div>



<p>Le principe est simple. Vous <strong>enchérissez au montant que vous souhaitez</strong> au clic (<strong>CPC</strong>). Si aucun de vos concurrents n'a enchéri plus cher que vous sur les mêmes mots clés ou traines que vous, v<strong>ous êtes premier en SERP</strong> !</p>



<p>Ici, ce sont Darty et Boulanger qui se disputent la traine "ampli hifi" :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-84-1024x395.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-base-2-background-color has-background">👀Il faudra <strong>surveiller votre taux de conversion </strong>car <strong>le CPC va avoir un impact sur votre marge</strong> : si <strong>100 lead cliquent sur le lien sponsorisé </strong>de votre produit enchéri à<strong>1,00 € de CPC</strong> et que seuls<strong>2% d'entre eux achètent</strong>, cela fait <strong>un poids de 50 € sur chaque article vendu</strong> !</p>



<p>👉🏻 selon <a href="https://www.coutsite.fr/calculateur-budget-google-ads-2026" target="_blank" rel="noreferrer noopener">cette étude</a>, le budget moyen estimé de SEA se repartit ainsi par secteurs :</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th><strong>Secteur d’activité</strong></th><th><strong>CPC moyen observé</strong></th><th><strong>Budget recommandé mensuel</strong></th><th><strong>Objectif typique</strong></th></tr></thead><tbody><tr><td>Artisan &amp; BTP</td><td>1,80 € – 3,50 €</td><td>600 € – 1 200 €</td><td>Générer des leads locaux</td></tr><tr><td>Immobilier</td><td>2,80 € – 4,50 €</td><td>1 500 € – 3 000 €</td><td>Prospection &amp; rendez-vous</td></tr><tr><td>Avocats &amp; juridique</td><td>4,00 € – 12,00 €</td><td>2 000 € – 5 000 €</td><td>Leads qualifiés</td></tr><tr><td>E-commerce (mode, déco, etc.)</td><td>0,40 € – 1,50 €</td><td>1 000 € – 10 000 €+</td><td>Ventes directes</td></tr><tr><td>Santé &amp; bien-être</td><td>1,50 € – 2,50 €</td><td>500 € – 1 000 €</td><td>Prise de RDV</td></tr><tr><td>Services B2B / consulting</td><td>3,50 € – 8,00 €</td><td>1 500 € – 4 000 €</td><td>Leads B2B</td></tr><tr><td><strong>Exemples complémentaires</strong></td><td></td><td></td><td></td></tr><tr><td>Services locaux (plombier, électricien)</td><td>3 € – 6 €</td><td>≈ <strong>1 000 €/mois</strong> minimum</td><td>Conversion rapide locale</td></tr><tr><td>Retail / shopping (annonces search)</td><td>~0,40 € – 2 €</td><td>≈ <strong>1 500 €/mois</strong></td><td>Acquisition de clients online</td></tr></tbody></table></figure>



<p>👉🏻 C'est sur <a href="https://support.google.com/google-ads/answer/6146252?hl=fr&amp;ref_topic=10286612&amp;sjid=10516294162411121566-EU&amp;visit_id=639034984993850249-3783776766" target="_blank" rel="noreferrer noopener">Google Ads </a>que cela se passe.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-85.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="572" height="103" src="https://st9ph.fr/wp-content/uploads/2026/01/image-86.png" alt="" class="wp-image-32484" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-86.png 572w, https://st9ph.fr/wp-content/uploads/2026/01/image-86-300x54.png 300w" sizes="auto, (max-width: 572px) 100vw, 572px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p>Vous définissez<strong> un budget quotidien </strong>qu'Ads ne dépassera jamais, même si le nombre de clics sur <strong>vos annonces est plus grand</strong></p>



<p class="has-base-2-background-color has-background">Selon votre domaine d'activité, Ads vous suggérera <strong>un niveau en comparaison </strong>avec vos concurrents.</p>



<p></p>
</div>
</div>



<p class="has-text-align-center"><em>ci-dessus, un avertissement si je choisis moins que le budget investi par mes concurrents.</em></p>



<p class="has-base-2-background-color has-background">Je n'irai pas plus loin car, même si je vous aime bien, je ne vais pas dépenser <strong>1000 € par mois </strong>pour passer devant ECommerce Mag et le Hubspot. Ils se demanderaient un peu qui je suis et pourquoi je fais ça !</p>



<p class="has-medium-font-size">👉🏻 <strong>Ubersuggest</strong> est un autre outil d'aide au SEA (payant lui aussi) :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-87.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p>Il permet de suivre aussi <strong>le Ranking et la difficulté SEO</strong> (pour savoir où miser) :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-339-1024x613.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-base-2-background-color has-background">Classé 🏅<strong>17ème en moyenne </strong>en visibilité pour le web francophone (😏 ben quoi ? ce n'est pas si mal !) en m'étant annoncé <strong>freelance dans le marketing digital</strong>, j'aurais tout intérêt à <strong>sortir de l'ombre en boostant ma visibilité <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">par le biais du SEA</mark></strong> !</p>



<p>👉 Je peux <strong>analyser les mots clés </strong>que j'ai retenus et <strong>auditer leur poids </strong>ainsi que <strong>l'intentionnalité des googlenautes </strong>qui les ont recherchés :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-340-1024x476.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-base-2-background-color has-background">Ici, "Contact Form 7", <strong>un plug-in</strong> <img loading="lazy" decoding="async" width="19" height="18" class="wp-image-33543" style="width: 19px;" src="https://st9ph.fr/wp-content/uploads/2026/01/image-336.png" alt=""><strong>WordPress</strong> pour lequel j'ai fait un tuto est d'une<strong> difficulté moyenne </strong>( c'est sur 100 -&gt; pas trop cher au CPC mais pas donné non plus) et clairement sur<strong> la file "informationnelle" </strong>et pas "transactionnelle". Donc, <strong>ça ne rapporterait rien de miser</strong>.</p>



<p>👉 Je sais auss<strong>i combien je dois miser </strong>pour être numéro 1 en lien sponsorisé :</p>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-341.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-base-2-background-color has-background"><strong>2,74 €</strong> pour un volume d'<strong>engagement de 590</strong> atterrissages, <strong>c'est 1617 € de budget SEA</strong>. Admettons que je vende mes tutos et que j'ai <strong>un taux de conversion de 5%</strong> (au grand maximum), cela me fait <strong>29 acheteurs.</strong> Il a intérêt à être drôlement bien mon tuto pour<strong> le vendre au minimum 80 €</strong> pour <strong>marger de 0,50 €</strong> ! Je vais faire la fête avec <strong>15 € dans ma poche </strong>! 🍾 </p>



<p>⛔ Donc, <strong>non merci,</strong> même en terme d<strong>'investissement de trafic</strong> (mes visiteurs vont se promener dans ma boutique et peut-être remplir leur panier plus abondamment), <strong>ce n'est pas une OP à tente</strong>r.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>👉 Vous pouvez aussi <strong>"booster" votre audience </strong>en <strong><em>Referal</em></strong> depuis <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color"><strong>les pages de vos réseaux sociaux</strong>.</mark></p>



<p class="has-base-2-background-color has-background"><img loading="lazy" decoding="async" width="30" height="28" class="wp-image-33570" style="width: 30px;" src="https://st9ph.fr/wp-content/uploads/2026/01/linked-in-small.jpg" alt=""> Ici, <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color"><strong>Linked In Ads</strong></mark> me propose <strong>260k impressions</strong> en sponsorisé au lieu des <strong>70 </strong>que m'avaient apporté<strong> les followers </strong> (on ne se moque pas) soit un <strong>x 37K</strong> pour une <strong>cinquantaine d'euros</strong>. (CPV 0,002 €)</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://business.linkedin.com/fr/fr/advertise/ads/campaign-manager" target="_blank" rel=" noreferrer noopener"><img loading="lazy" decoding="async" width="305" height="37" src="https://st9ph.fr/wp-content/uploads/2026/01/image-338.png" alt="" class="wp-image-33571" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-338.png 305w, https://st9ph.fr/wp-content/uploads/2026/01/image-338-300x36.png 300w" sizes="auto, (max-width: 305px) 100vw, 305px" /></a></figure>
</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-337.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>



<p class="has-small-font-size">↗️ Vous pouvez <strong>en savoir plus sur le Campaign manage</strong>r en cliquant sur le logo.</p>



<p>✅ Là, effectivement, <strong>ça se tente</strong> pour <strong>doper </strong>de façon générale <strong>l'audience du site</strong> et espérer <strong>des rebonds internes</strong>. L'effet "boule de neige" peut être payant. On mise sur un flux d'entrée (<strong>Aspirateur</strong>) et l'attrait du site doit pouvoir faire le reste si on l'a bien conçu.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="background-color: #f8f8f8; border-width: 2px; border-color: #ECECEC; " class="ub_call_to_action wp-block-ub-call-to-action-block" id="ub_call_to_action_114cadf2-2234-4f91-9ed0-7ea0ee422423">
			<div class="ub_call_to_action_headline">
				<p class="ub_call_to_action_headline_text" style="font-size: 30px; text-align: center; ">🍀</p>
			</div>
			<div class="ub_call_to_action_content">
				<p class="ub_cta_content_text" style="font-size: 15px; text-align: center; ">Un petit Quiz pour finir ?</p>
			</div>
			<div class="ub_call_to_action_button">
				<a href="https://forms.gle/sNy8cNDUobjVBdYv5" target="_self" rel="noopener noreferrer" class="ub_cta_button" style="background-color: var(--accent); width: 250px; ">
					<p class="ub_cta_button_text" style="color: var(--base-3); font-size: 14px; ">Allez ! Soyons fous !</p>
				</a>
			</div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center has-accent-color has-text-color has-link-color has-medium-font-size wp-elements-6005cf48bff9fae1ed7a3fbdac7d8ac9"><strong>Tu préfères sur ton smartphone ?</strong></p>



<p class="has-text-align-center"><strong>Libre à toi :</strong></p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="490" height="490" src="https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-2.png" alt="" class="wp-image-32590" style="width:195px;height:auto" srcset="https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-2.png 490w, https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-2-300x300.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-2-150x150.png 150w" sizes="auto, (max-width: 490px) 100vw, 490px" /></figure>
</div></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">

<div class="wp-block-ub-social-share" id="ub-social-share-34cb1b13-3295-452f-ad1e-918dc902bc11">
			<div class="social-share-icons align-icons-center orientation-icons-row"><a aria-label="linkedin-logo" target="_blank" rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fst9ph.fr%2F%25e2%258f%25ba%25ef%25b8%258fomnicanal-search-engine-marketing%2F" class="ub-social-share-linkedin-container" style="border-color: #2867b2; ">
				<span class="social-share-icon ub-social-share-linkedin square" style="width: 30px; height: 30px; "><svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" fill="#ffffff" width="20" height="20" viewbox="0 0 448 512"><path d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span><span style="">partager</span>
			</a></div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center"><strong>donnez votre avis</strong> (star ranking) en bas de cette page</p>



<p class="has-text-align-center has-large-font-size">⬇️</p>



<p></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-jetpack-repeat-visitor"></div></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%"><div class="yoast-breadcrumbs"><span><span><a href="https://st9ph.fr/">Accueil</a></span> » <span class="breadcrumb_last" aria-current="page">les piliers du SEO</span></span></div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div>
</div>



<p></p>



			<div class="wp-block-uagb-post-grid uagb-post-grid  uagb-post__image-position-top uagb-post__image-enabled uagb-block-6b4c3d01     uagb-post__items uagb-post__columns-3 is-grid uagb-post__columns-tablet-2 uagb-post__columns-mobile-1 uagb-post__equal-height" data-total="3" style="">

												<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-donner-des-sens-au-digital/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="900" height="280" src="https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops.jpg 916w, https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops-300x93.jpg 300w, https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops-768x239.jpg 768w" sizes="auto, (max-width: 900px) 100vw, 900px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-donner-des-sens-au-digital/" target="_self" rel="bookmark noopener noreferrer">⏺️Omnicanal | Donner des sens au digital</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-05-04T14:12:54+02:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					4 mai 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>🎧 Ecouter l&#8217;introduction audio Ce n&#8217;est pas pour rien que même les pure players finissent...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-donner-des-sens-au-digital/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/com-en-service-client-et-son-management/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="643" height="165" src="https://st9ph.fr/wp-content/uploads/2026/02/celi-avant.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/02/celi-avant.jpg 643w, https://st9ph.fr/wp-content/uploads/2026/02/celi-avant-300x77.jpg 300w" sizes="auto, (max-width: 643px) 100vw, 643px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/com-en-service-client-et-son-management/" target="_self" rel="bookmark noopener noreferrer">🏷️Animation RC | La communication en service client &amp; son management</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-02-09T15:14:06+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					9 février 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Un commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>L&#8217;importance de communiquer A toutes les étapes de son parcours client, votre interlocuteur recevra des...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/com-en-service-client-et-son-management/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-ux-mobile/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="900" height="381" src="https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-1024x434.png" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-1024x434.png 1024w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-300x127.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-768x326.png 768w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-1536x652.png 1536w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s.png 1584w" sizes="auto, (max-width: 900px) 100vw, 900px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-ux-mobile/" target="_self" rel="bookmark noopener noreferrer">⏺️Omnicanal | UX Mobile</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-30T13:51:57+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					30 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>C&#8217;est quoi &#8220;l&#8217;UX Mobile&#8221; ? UX pour User eXperience. L’expérience utilisateur en mobilité, c’est la...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-ux-mobile/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%98%9d%ef%b8%8flepreuve-e5-a-ecrit-du-bts-ndrc/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="720" height="211" src="https://st9ph.fr/wp-content/uploads/2026/01/e5a-img.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/e5a-img.jpg 720w, https://st9ph.fr/wp-content/uploads/2026/01/e5a-img-300x88.jpg 300w" sizes="auto, (max-width: 720px) 100vw, 720px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%98%9d%ef%b8%8flepreuve-e5-a-ecrit-du-bts-ndrc/" target="_self" rel="bookmark noopener noreferrer">☝️L&#8217;épreuve E5 A (écrit) du BTS NDRC</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-11T21:23:50+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					11 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>⏱️ 3 heures | ✅coef2 /40 pts 👍 A ce jour, tous mes étudiants ont...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%98%9d%ef%b8%8flepreuve-e5-a-ecrit-du-bts-ndrc/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8fanimation-rc-la-satisfaction-client/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="758" height="158" src="https://st9ph.fr/wp-content/uploads/2026/01/satcli-bande.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/satcli-bande.jpg 758w, https://st9ph.fr/wp-content/uploads/2026/01/satcli-bande-300x63.jpg 300w" sizes="auto, (max-width: 758px) 100vw, 758px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8fanimation-rc-la-satisfaction-client/" target="_self" rel="bookmark noopener noreferrer">🏷️Animation RC | la Satisfaction Client</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-10T14:12:41+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					10 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>C&#8217;est quoi la satisfaction client ? On parle aussi de &#8220;Customer Care&#8221;. C&#8217;est le fait...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8fanimation-rc-la-satisfaction-client/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="798" height="185" src="https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116.jpg 798w, https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116-300x70.jpg 300w, https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116-768x178.jpg 768w" sizes="auto, (max-width: 798px) 100vw, 798px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" target="_self" rel="bookmark noopener noreferrer">⏺️Omnicanal | Search Engine Marketing</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-08T21:56:41+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					8 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>C&#8217;est quoi le &#8220;Search Engine Marketing&#8221; ? Le Search Engine Marketing (SEM) est l&#8217;addition de...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
											</div>
			


<div class="wp-block-uagb-team uagb-team__image-position-left uagb-team__align-left uagb-team__stack-tablet uagb-block-5002ab42"><img decoding="async" class="uagb-team__image-crop-circle" src="https://st9ph.fr/wp-content/uploads/2022/01/steph-150x150.png" alt="" height="100" width="100" loading="lazy"/><div class="uagb-team__content"><h4 class="uagb-team__title">St9ph</h4><span class="uagb-team__prefix">Webmaster</span><p class="uagb-team__desc">Je suis Formateur depuis 1997 et j'ai commencé ma carrière comme technicien en réseaux informatiques.  J'ai travaillé pour de grands organismes de formation : Greta, AFPA, réseau des CCI, des écoles de commerces réputées : EM Normandie, E2SE, groupes FIM et ICEP, et collaboré en Centre d'Appels chez Webhelp pendant 12 ans avec des grands comptes FAI comme Orange, Bouygues Telecom et SFR, des assureurs et des fournisseurs d'Energie comme Direct Energie (devenu Total) et EDF (devenu Engie) !</p><ul class="uagb-team__social-list"><li class="uagb-team__social-icon"><a href="https://www.facebook.com/profile.php?id=100076192144163" aria-label="facebook" target="_blank" title="" rel="noopener noreferrer"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z"></path></svg></a></li><li class="uagb-team__social-icon"><a href="https://www.linkedin.com/company/st9ph/" aria-label="linkedin" target="_blank" title="" rel="noopener noreferrer"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg></a></li></ul></div></div>
<p>L’article <a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/">⏺️Omnicanal | Search Engine Marketing</a> est apparu en premier sur <a href="https://st9ph.fr">st9ph.fr</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://st9ph.fr/wp-content/uploads/2026/01/Enregistrement-2026-01-08-184314.mp4" length="939993" type="video/mp4" />
<enclosure url="https://st9ph.fr/wp-content/uploads/2026/01/voicertool_audio_Eloise_12-01-2026_at_19_31_54_on_January_12th_2026.mp3" length="273024" type="audio/mpeg" />

		<post-id xmlns="com-wordpress:feed-additions:1">32397</post-id>	</item>
	</channel>
</rss>
