← Scan your domain
SEO

Page Title Tag

The title tag controls what appears in browser tabs and as your headline in Google search results.

high severity

The <title> tag in your HTML <head> does two important things:

  • It's the text shown in the browser tab
  • It's the clickable blue headline shown in Google search results
<title>didyouship.com - production readiness checker</title>

A good title is 50-60 characters, includes your brand name, and describes what the page does.

  • Google uses the title as the primary ranking signal for what your page is about
  • Without a title, your search result looks broken - Google either shows the URL or makes something up
  • Browser tabs are blank - users with multiple tabs can't find your site
  • Social shares look poor - Open Graph uses the title tag as a fallback

Add inside your <head>:

<title>Your App Name - what it does in 5-7 words</title>
FrameworkHow to set title
Next.js (App Router)
export const metadata = {
  title: 'Your App - tagline',
};
Next.js (Pages Router)
import Head from 'next/head';
<Head><title>Your App</title></Head>
AstroIn frontmatter: title: 'Your App', then <title>{title}</title>
React (plain)document.title = 'Your App'; or use react-helmet
Plain HTMLDirectly in <head><title>...</title></head>

Check if your domain has this issue