The Anchor List: Balancing Power and Safety

An Anchor is the clickable text of the link itself (the part usually underlined in blue). For example, in the link <a href="site.com">buy flowers</a>, the anchor is the phrase " buy flowers " .

For Google, the anchor is a crucial clue as to what exactly is on the target page. If 100 sites link to you using the phrase " best pizzeria " , the algorithm will happily put you in 1st place for that query. But herein lies the biggest trap in SEO.

Learning Supplement

JavaScript SEO and Rendering

Modern sites built with React or Vue load empty HTML. Google has to render the JavaScript to see the content, which takes time.

Lesson Terms

Case Study Example

A React app used Client-Side Rendering (CSR). Googlebot didn't wait for JS to load and saw a blank page. Implementing Server-Side Rendering (SSR) fixed it.

Real Life Example

CSR is giving a robot ingredients and a recipe. SSR is giving the robot a fully baked cake.