---
title: "rating · Meta Tag · zhead"
canonical_url: "https://zhead.dev/meta/rating"
last_updated: "2026-08-10T16:29:02.630Z"
meta:
  description: "Marks a page as containing sexually explicit adult content so Google can filter it in SafeSearch. It is not a general age rating system."
  "og:description": "Marks a page as containing sexually explicit adult content so Google can filter it in SafeSearch. It is not a general age rating system."
  "og:title": "rating · Meta Tag · zhead"
---

Meta tags

# rating

Marks a page as containing sexually explicit adult content so Google can filter it in SafeSearch. It is not a general age rating system.

## Parameters

adult

Marks the page as containing sexually explicit adult content.

```
<meta name="rating" content="adult">
```

RTA-5042-1996-1400-1577-RTA

An equivalent RTA label that Google also recognizes as explicit.

```
<meta name="rating" content="RTA-5042-1996-1400-1577-RTA">
```

## Code examples

Good example

```
<meta name="rating" content="adult">
```

The simple value Google recommends for a page with sexually explicit content.

Good example

```
<meta name="rating" content="RTA-5042-1996-1400-1577-RTA">
```

The equivalent RTA value recognized by Google. You only need one of the two supported values.

Avoid this example

```
<meta name="rating" content="general">
```

Google does not use this tag to certify that a page is suitable for every age.

Avoid this example

```
<meta name="rating" content="kids">
```

This is not a supported SafeSearch rating value.

## Recommendations

- 01 Mark Every Explicit Page Google recommends adding the tag to each page with sexually explicit content.
- 02 Use One Supported Value Choose adult or the RTA label. Both mean the same thing to Google, so adding both is unnecessary.

## Related documentation

- [Google Search Central: Guidelines](https://developers.google.com/search/docs/specialty/explicit/guidelines#add-metadata)
- [Google Search Central: Special Tags](https://developers.google.com/search/docs/crawling-indexing/special-tags#rating)

## Related meta tags

### [charset](https://zhead.dev/meta/charset)

charset

Declares the character encoding used by the HTML document. In modern HTML, the value must be UTF-8.

```
<meta charset="utf-8">
```

The required character encoding for modern HTML.

### [creator](https://zhead.dev/meta/creator)

name

Adds a custom creator value to the document. The bare creator name has no standard HTML meaning, so it works only when a known consumer expects it.

```
<meta name="creator" content="Jane Doe">
```

A sensible value when a documented integration expects a plain creator name.

### [generator](https://zhead.dev/meta/generator)

name

Names one of the software packages that generated the HTML document. Leave it out when a person wrote the markup directly.

```
<meta name="generator" content="Nuxt">
```

Names the software that generated the document.

### [rating](https://zhead.dev/meta/rating)

name

Marks a page as containing sexually explicit adult content so Google can filter it in SafeSearch. It is not a general age rating system.

```
<meta name="rating" content="adult">
```

The simple value Google recommends for a page with sexually explicit content.