What is Google Site Name Support?

Google Site Name Support is a feature that allows you to specify a specific name for your website in Google Search results.

<html>
  <head>
    <title>Your Blog Title</title>
    <meta name="site_name" content="Your Blog Name">
  </head>
  <body>
    <p>Your blog content</p>
  </body>
</html>

Interactive Tip: Add a meta tag to your website's header using JavaScript

document.head.innerHTML += '<meta name="site_name" content="Your Blog Name">';