How Google Ranks Your Website: SEO Basics That Matter
The SEO fundamentals that actually move rankings for business sites, with the exact meta tags and structured data to add.
Muhammad Usman
May 5, 2026 · 2 min read
SEO has a reputation for being dark magic. For a normal business site, the fundamentals are few, boring, and powerful. I applied exactly these to this website; nothing below requires an agency.
Every page needs its own title and description
The title tag is the strongest on-page signal and the headline in search results. One topic per page, one clear title per page:
<!-- Plain HTML -->
<title>Emergency Plumber in Austin | Smith Plumbing</title>
<meta name="description"
content="24/7 emergency plumbing in Austin. Licensed, insured, on-site within an hour." />
// Next.js App Router
export const metadata = {
title: 'Emergency Plumber in Austin | Smith Plumbing',
description: '24/7 emergency plumbing in Austin. Licensed, insured, on-site within an hour.',
}Structured data: speak Google’s language
JSON-LD tells Google exactly what your page is: a business, an article, a product, an FAQ. It unlocks rich results like star ratings and FAQ dropdowns in search:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Smith Plumbing",
"telephone": "+1-512-555-0100",
"areaServed": "Austin, TX"
}
</script>The rest of the fundamentals
- Fast loading, especially mobile: Core Web Vitals are a ranking factor
- Internal links: every page reachable from other pages with descriptive link text
- A sitemap.xml submitted in Google Search Console
- HTTPS and one canonical domain version (www or non-www, not both)
- Content that actually answers what people type into the search box
What is overrated
Keyword stuffing, buying bulk backlinks, and daily filler posts written for robots. Google got good at spotting all of it. One genuinely helpful page beats ten filler posts, and a mention from one real industry site beats a hundred spam links.
The realistic timeline
SEO compounds. Expect little in the first weeks, visible movement in 2 to 3 months, and meaningful traffic after 6. Anyone promising page one in a week is selling something else.
Frequently asked questions
Do I need to pay for SEO tools?+
Not at the start. Google Search Console and PageSpeed Insights are free and cover the fundamentals for a business site.
Do backlinks still matter?+
Quality ones do: a mention from a real industry site helps. Bought bulk links are ignored at best and penalized at worst.
What is structured data?+
A small JSON block in your page that tells Google what the content is (business, article, FAQ, product). It enables rich results like ratings and FAQ dropdowns.