---
title: "profile:first_name · Meta Tag · zhead"
canonical_url: "https://zhead.dev/meta/profile-first-name"
last_updated: "2026-08-10T16:29:03.231Z"
meta:
  description: "Provides the given name of the person represented by a profile page."
  "og:description": "Provides the given name of the person represented by a profile page."
  "og:title": "profile:first_name · Meta Tag · zhead"
---

Open Graph metadata

# profile:first\_name

Provides the given name of the person represented by a profile page.

## Code examples

Good example

```
<meta property="profile:first_name" content="John">
```

A given name written as plain text.

Good example

```
<meta property="profile:first_name" content="María">
```

Unicode names and their accents are valid strings.

Avoid this example

```
<John>
```

HTML markup is not part of the person’s name.

Avoid this example

```
<meta property="profile:first_name" content="J0hn#">
```

Does not match the name shown on the example profile.

## Recommendations

- 01 Match the Person’s Name Use the spelling, accents, and capitalization shown on the profile page.
- 02 Keep Markup Out The content value is plain text. Do not put HTML around the name.

## Related documentation

- [Open Graph protocol](https://ogp.me/)

## Related meta tags

### [profile:first\_name](https://zhead.dev/meta/profile-first-name)

property

Provides the given name of the person represented by a profile page.

```
<meta property="profile:first_name" content="John">
```

A given name written as plain text.

### [profile:gender](https://zhead.dev/meta/profile-gender)

property

Sets the Open Graph gender value for the person represented by a profile page. The protocol only defines male and female.

```
<meta property="profile:gender" content="male">
```

One of the two values defined by Open Graph.

### [profile:last\_name](https://zhead.dev/meta/profile-last-name)

property

Provides the family name of the person represented by a profile page.

```
<meta property="profile:last_name" content="Doe">
```

A family name written as plain text.

### [profile:username](https://zhead.dev/meta/profile-username)

property

Provides a short, unique username for the person represented by a profile page.

```
<meta property="profile:username" content="exampleuser">
```

A short username without a platform-specific @ prefix.