Fix-it guide
Add a <title> tag to your page
The <title> tag is a single line of HTML that becomes the blue clickable headline of your listing in Google search results.
What it is
The <title> tag is a single line of HTML that becomes the blue clickable headline of your listing in Google search results. It also shows up as the browser tab name. Despite being one line of code, it is the single strongest on-page signal Google uses to figure out what your page is about.
Why it matters
A page with no title tag is functionally invisible in search results, Google will either skip it entirely or invent a title from your page text, almost always badly. Pages that ship a clear, keyword-rich title routinely out-rank identical pages that do not. This is the highest-ROI single line of code on your entire site.
How to fix it
Open the <head> section of your page
Locate the HTML file (or the template/layout that produces it). The <title> tag goes inside <head>, ideally near the top so it is the first thing crawlers see.
Write a 50–60 character title
Include your primary keyword first, then your brand. Keep it under 60 characters or Google will truncate it with an ellipsis in the SERP. Example pattern: "{Service} in {City} | {Brand}".
<head> <title>Airport Car Service in Austin | Apex Car Service</title> </head>Make every page title unique
Duplicate titles across pages cause Google to lump them together and pick one to rank. Each URL on your site should have a distinct title that describes that page specifically.
If you use Next.js, set it via the Metadata API
On Next.js App Router, export a `metadata` object (or `generateMetadata` function) from your page or layout. It will inject the <title> automatically.
// app/services/airport-car-service/page.tsx import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Airport Car Service in Austin | Apex Car Service', };
How to verify the fix
Reload the page and check the browser tab, it should show your new title. Then "View Page Source" (Ctrl/Cmd+U) and confirm the <title> tag appears inside <head>. Re-run the Drive Top-Line audit; the "Add a <title> tag" suggestion should disappear.
Further reading
Confirm the fix
Run a fresh audit to make sure the issue is gone.
We’ll re-grade every category and confirm this issue is no longer firing.
Run a fresh audit