The meta robots tag is an HTML tag that tells search engines how to crawl and index a specific page.
The meta robots tag is an HTML tag placed in the head section of a web page that tells search engines how to crawl and index that specific page. Unlike the robots.txt file, which governs whole sections of a site from a single location, the meta robots tag operates at the level of an individual page. It sits inside the page's code and is read by crawlers when they render the document, giving fine-grained control over how each page is treated in search results.
Mechanically, the tag names a target and a set of directives. A typical version addresses all crawlers with the name attribute set to robots, then lists instructions in the content attribute. The most common directives are index and noindex, which control whether the page may appear in search results, and follow and nofollow, which control whether the links on the page pass authority and are used for discovery. Additional values exist for finer control, such as instructions that prevent search engines from showing a cached copy, from generating a text snippet, or from displaying an image preview beyond a certain size. Directives can be combined, for example noindex paired with follow, which keeps a page out of the index while still allowing crawlers to travel through its links. The same instructions can also be delivered through an HTTP response header, which is useful for non-HTML files such as PDFs.
The tag draws its name from three roots. Meta comes from Greek and means about or beyond, reflecting that the tag carries information about the page rather than visible content. Robots refers to the automated crawlers it addresses, and tag describes its form as an HTML element. Together the name captures its function precisely: an HTML element that conveys instructions about a single page to the robots that crawl it.
For a business, the meta robots tag matters because it provides surgical control over what enters the search index. Many pages on a typical site should exist for users but not compete in search: internal search results, thank-you pages after a form submission, printer-friendly versions, staging content, or thin tag archives. Applying noindex to these keeps them out of results while leaving them fully usable. Used well, the tag helps concentrate a site's visibility on its strongest pages and prevents low-value or duplicate content from cluttering the index.
The nuances are where mistakes happen. The most damaging error is combining a robots.txt block with a noindex meta tag on the same page. If crawlers are blocked from fetching the page, they never read the noindex instruction, so the page can linger in the index anyway. The correct approach is to leave the page crawlable and let the meta tag do its work. Another common slip is accidentally shipping a site-wide noindex from a staging environment to production, which can quietly remove an entire site from search. It also helps to remember the default: a page with no meta robots tag is treated as index, follow, so the tag is only necessary when you want to change that behavior. Precise and page-specific, the meta robots tag is one of the most useful instruments in technical SEO when handled with care.
The meta robots tag gives page-level control over indexing and link following. It is the precise tool for keeping specific pages out of search results.