Title tag
A title tag is the HTML title element that names a page. Search engines show it as the clickable headline in search results and use it as a signal of what the page is about.
Why it matters
The title tag is one of the few parts of a search result you control directly. When it is clear and matches the page, it becomes the clickable headline a searcher reads first. When it is empty, generic, stuffed with keywords, or a poor match for the content, Google may replace it with text it builds from your headings or body copy instead.
So the useful goal is not to hit a length or a keyword count. It is to write a title that is accurate and specific enough that Google keeps it.
How it works
A page declares its title with a single <title> element inside <head>. The
HTML standard says a document has one title, and the browser shows it in the tab
and in bookmarks.
Search engines read that element as the main candidate for the result link, but they do not always use it as written. Google's documentation lists the cases where it generates a different title link: a half empty title, an obsolete or inaccurate one, boilerplate repeated across the site, no clear main title, or a title written in the wrong language for the page. When one of those applies, Google draws replacement text from on-page sources.
Length is a display limit, not a rule. Google shortens the link by rendered pixel width, so a title made of wide capital letters is cut sooner than a longer looking title made of narrow ones. That is why the common advice of 50 to 60 characters is a rough guide rather than a fixed cutoff.
What does not matter
Several title tag habits get more attention than they deserve.
- There is no exact character limit that Google enforces. The "60 characters" figure describes what fits on screen, not a ranking threshold, and a title that is visually cut off in the result is still indexed in full.
- Repeating your keyword does not add weight. Keyword stuffing is one of the triggers that makes Google rewrite the title, so it can cost you the headline you wrote.
- The title tag and the
<h1>do not have to be identical. They serve two different surfaces, the search result and the page, and it is fine for the wording to differ as long as both describe the same content. - A brand suffix is optional. It helps recognition, but it spends pixels that could go to the specific part of the title, so drop it on pages where the space is tight.
Code example
A good title is unique to the page, front loads the specific part, and appears once in the head.
<head>
<title>Redirect chain inspector for Chrome - Scalpel Redirects</title>
</head>
Avoid an empty, stuffed, or duplicated title. This is the shape that invites Google to write its own headline instead.
<head>
<title>Home | Home | Best Free SEO Tools Buy Cheap SEO Tool Online</title>
</head>
How Scalpel shows it
Scalpel SEO reads the live <title> for the current page and shows it in the
Meta panel with a character count and a pixel-width meter, so you can see where
Google is likely to shorten it. It flags a missing title, a title duplicated
from another open tab, and one that runs long. The page is read in your browser,
and nothing about it is sent to a server.