Links
Home / SEO Standards / Links
Link & URL Standards
Last Edited: 2026-06-30 11:46
Anchor Text & Aria-Labels
The text content and description attributes that define the link destination for screen readers and search crawlers.
- Input: The text within the
<a>tag and thearia-label="..."attribute. - Standards:
- Keyword Context: Anchor text must feature descriptive, target-focused keywords rather than generic "click here" or "learn more" text.
- Aria-Label Fallback: When design demands generic visual buttons (e.g. "Book Now"), you must use an
aria-labelto supply search engines and accessibility tools with link destination context.- Example:
<a href="/schedule" aria-label="Book AC repair services in Phoenix">Book Now</a>
- Example:
- Visual Style: Links must be visually distinct (underlined by default in text block sections).
URL Slugs
The text identifier representing the path of the webpage resource.
- Input: The URL subdirectory path string (slug) following the domain name.
- Standards:
- Clean Formatting: Use lowercase characters, separate words with hyphens, and strip out dates or grammatical "stop words" (the, a, and).
- Hierarchical Subdirectories: Structure directories (e.g.,
/service-area/city/service/) to establish topical grouping when search volume supports the division.
Linkable Elements
The interactive page elements that are permitted to function as link containers.
- Input: Parent containers enclosing the
<a>tags. - Standards:
- Approved Elements: Navigation links must only be wrapped around Images, Buttons, and Text.
- Prohibited Elements: Do not wrap links around heading elements (Ref: Headings) or elements that trigger hover actions.
- Whole Section Wraps: Avoid wrapping entire layout blocks or sections in links unless an
aria-labelis defined to structure the link destination.
External Links
Links that navigate the user away from the local website to a third-party domain.
- Input: The
<a>element with non-local URLs. - Standards:
- New Tab Requirement: All external links must open in a new browser tab or window.
- Security & Performance Attributes: Must include
target="_blank"paired withrel="noopener"(orrel="noopener noreferrer") to prevent performance drag and protect against tab-nabbing vulnerabilities.- Example:
<a href="https://example.com" target="_blank" rel="noopener">Visit Reference</a>
- Example: