DEV Community

Dave Gray
Dave Gray

Posted on • Originally published at davegray.codes on

What is the Yandex Verification meta tag?

If you look at the metadata in websites, you may see a meta tag with the name yandex-verification. Here's what it means.

What is Yandex?

According to Wikipedia, Yandex is a Russia based company that owns Yandex Search. The meta tag yandex-verification refers to Yandex Search.

What does yandex-verification do?

yandex-verification is much like google-site-verification. yandex-verification confirms you are the webmaster of your website for Yandex Search.

How can I add yandex-verfication to my website?

Yandex provides webmaster tools. These tools help you add your site and receive your verification code. You then place the code in the yandex-verification meta tag for confirmation.

How to Add yandex-verification with Next.js

To add the yandex-verification meta tag in Next.js, add the following to the metadata object in your root layout.tsx file:

// app/layout.tsx
import type { Metadata } from 'next'

// rest of layout.tsx file here...

export const metadata: Metadata = {
    // rest of metadata object here... 
    verification: {
        google: "YOUR-VERIFICATION-CODE-PROVIDED-BY-GOOGLE",
        yandex: "YOUR-VERIFICATION-CODE-PROVIDED-BY-YANDEX",
    },
}
Enter fullscreen mode Exit fullscreen mode

Don't worry if you haven't added a google-site-verification code to your website. You can learn how by reading my How to Submit Your Sitemap article.

The Result

You should now have a yandex-verification meta tag inside the <head> section of your website.

Here's the meta tag from my website:

<meta name="yandex-verification" content="YOUR-VERIFICATION-CODE-PROVIDED-BY-YANDEX">
Enter fullscreen mode Exit fullscreen mode

Let's Connect!

Hi, I'm Dave. I work as a full-time developer, instructor and creator.

If you enjoyed this article, you might enjoy my other content, too.

My Stuff: Courses, Cheat Sheets, Roadmaps

My Blog: davegray.codes

YouTube: @davegrayteachescode

X: @yesdavidgray

GitHub: gitdagray

LinkedIn: /in/davidagray

Patreon: Join my Support Team!

Buy Me A Coffee: You will have my sincere gratitude

Thank you for joining me on this journey.

Dave

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

Cloudinary image

Optimize, customize, deliver, manage and analyze your images.

Remove background in all your web images at the same time, use outpainting to expand images with matching content, remove objects via open-set object detection and fill, recolor, crop, resize... Discover these and hundreds more ways to manage your web images and videos on a scale.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay