Important Meta Tags that you should have on your website

thumbnail

Hello Friends, Today in this short post I will be mentioning the important meta tags that you should have on your website to improve SEO. You can do it simply or you can do this with a simple trick which I will mention in the end of this post. Lets get started.

We will have primary tags for title, description, author, keywords, etc and for social media, we have open graph(og) tags and for twitter, we have twitter meta tags. We need to place below tags inside the head tag as below.

  <head> 
    <!-- Primary Meta Tags -->
    <title>Your Website Title</title>
    <meta name="title" content="Your Website Title"/>

    <meta name="robots" content="index, follow"/>
    <meta name="description" content="Your Website Description"/>
    <meta name="author" content="Author"/>
    <meta name="keywords" content="Keyword1, keyword2,...." />
    <!-- Open Graph Tags -->
    <meta property="og:title" content="Your Website Title" />
    <meta property="og:site_name" data-page-subject="true" content="Website Title" />
    <meta property="og:url" content="https://codewithmarish.com" />
    <meta property="og:description" name="description" content="Website Title"/>
    <meta property="og:image" content="https://codewithmarish.com/logo.png"/>
    <!-- Twitter Tags -->
    <meta property="twitter:card" content="summary_large_image">
    <meta property="twitter:url" content="https://codewithmarish.com">
    <meta name="twitter:image" content="https://codewithmarish.com/logo.png"/>
    <meta name="twitter:title" content="Your Website Title"/>
    <meta name="twitter:description" content="Your Website Description"/>     
  </head>

For generating this tags, we have a meta tag generator on our website please visit at

https://codewithmarish.com/products/meta-tag-generator

Thanks for reading this very short post, please remember this will not alone will improve your SEO, but this will help you index in google search by a small amount, there are many other factors such as website user experience, content quality, website performance, loading time, etc. Stay Tuned!

If you found this post helpful please share maximum, Thanks for reading 😊 Stay tuned.

Also please share your suggestion for us to improve and serve you better.

https://codewithmarish.com/contact

Also Please don’t forget to subscribe our youtube channel codewithmarish for all web development related challenges.

https://www.youtube.com/channel/UCkPYmdVz8aGRH6qCdKMRYpA

Related Posts