SEO Friendly HTML Head Meta Tags

22-12-2017

SEO Friendly HTML Head Meta Tags

All Meta Tags of HTML files are placed into the HEAD tag. Meta tags contain information about the page. Some meta tags play a very important role for SEO purposes and all we are going to see here.


Below is an example of tags that we place under the HEAD tag of HTML. For best SEO Practice, We pass some important information about our page so that Search Engines understand the purpose of the content. These META Tags are not the magic of doing SEO, we all know that Content is always king for SEO and there are many terms used to rank a web page in search engines. But we pass some information about the page in HEAD that tells the Search Engine to understand the page contents.

What information we pass in HEAD for SEO?


In below example code, Page Titlae is the title of page.Page Description is the description of the page.https://yourwebsite.com/ is the website address.https://yourwebsite.com/url is the current URL of page.https://yourwebsite.com/open-graph-jpeg-image-complete-url is the Open Graph Image file full path. This image will be displayed when you share the link on Facebook OR WhatsApp.


 
    <title>Page Titlae</title>
    	<meta charset="utf-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    	<meta name="description" content=" Page Description ">
    	<meta property="og:locale" content="en_US" />
    	<meta property="og:title" content="Page Title" />
    	<meta property="og:description" content=" Page Description " />
    	<meta property="og:url" content="https://yourwebsite.com/url" />
    	<meta property="og:site_name" content="https://yourwebsite.com/" />
    	<meta property="og:image" content="https://yourwebsite.com/open-graph-jpeg-image-complete-url" />
    	<meta property="og:image:secure_url" content="https://yourwebsite.com/open-graph-jpeg-image-complete-url" />
    	<meta name="twitter:card" content="summary_large_image" />
    	<meta name="twitter:description" content=" Page Description " />
    	<meta name="twitter:title" content="Page Title" />
    	<meta name="twitter:image" content="https://yourwebsite.com/open-graph-jpeg-image-complete-url" />
    	<meta property="og:image:width" content="600" />
    	<meta property="og:image:height" content="400" />




Latest Published Blog


PurgeCSS - Remove unused CSS from Web Pages

PurgeCSS - Remove unused CSS from Web Pages

03-04-2023

It is generally a good practice to remove unused CSS from web pages. As mentioned earlier, removing unused CSS can provide several benefits, including faster page loading times, improved website performance, reduced page weight, and better code maintainability.


Installing Asterisk16 on CentOs7

Installing Asterisk16 on CentOs7

14-04-2022

Here is Step-by-Step Guide to Installing Asterisk16 on CentOs7.


Make CentOS7 Full Screen Like Primary Operating System in VirtualBox

Make CentOS7 Full Screen Like Primary Operating System in VirtualBox

01-03-2022

Learn How to Make CentOS7 Full Screen Like Primary Operating System in VirtualBox. After Installing CentOS in VirtualBox, CentOs Screen does not Occupy the Full Window Screen. Here in this Tutorial, We Will See how to do it.


Setting  Key to a Column For Quick Fetch Operation From Larze Records

Setting Key to a Column For Quick Fetch Operation From Larze Records

14-02-2019

To set a key to a column in SQL, you need to create an index on that column. An index is a data structure that allows the database to quickly look up records based on the values in the indexed column. By creating an index on a column, you can improve the performance of queries that filter, sort, or group by that column.