Wednesday, 27 January 2016

High PR Directory Submission Site List

Search Engine Submission Site List

Thursday, 21 January 2016

PDF Submission Site List

Business listing Site List


If you want to make your Business more appearing then post your business in business listing site. In this way more of the users will be aware about your business.

Business Listing Site

  1. http://www.yalwa.in/
  2. http://www.sulekha.com/ 
  3. http://www.yellowbot.com/
  4. http://www.indianyellowpages.com/
  5. http://in.enrollbusiness.com/Home
  6. http://classifieds.dialindia.com/
  7. https://www.brainybatch.com/
  8. http://indianplayschools.com/
  9. http://www.indiaparenting.com/ 
  10. http://www.bbb.org/

 

Monday, 4 January 2016

Meta Tags in SEO




Meta Tags

A Meta Tag can be described as snippets that describe the overall page content. It doesn’t appear on the web page, but only in the page’s HTML code.
There are various types of Meta Tags available. Some of these are:

1. Title Tag – We use Title Tag in web page and it should be a concise and accurate description which includes keywords also. This is a useful element from SEO point of view.
 
Format:
<title>50 to 60 Characters of Keyword</title>

Meta Description Tags-

  • Tips for Meta Description tags:
  • We should use keywords in Meta Description tags.
  • For a single web page we should use 150-160 characters for Meta Description.
  • While using your keywords try not to repeat same keywords/words even try to use multiple syntax.
  • For better result we should try to make different meta tag for each page (if possible)

Format- 
<meta name=”description” content=”155 characters of message matching text with a call to action goes here”>

Meta Keywords-

  • Here are some tips to use Meta Keywords Tags.
  • Do not repeat keywords.
  • We can use keywords which is similar to each other.
  • Use related and relevant keywords for your web pages
Format-

<meta name="keywords" content="Keywords separated by comma">

Robots Meta tags-

  • In case we don’t want that robot or spider indexed our some specific pages then we can use Robots Meta Tag.
  • Generally, we want our website admin page doesn’t indexed by robot then by using this tag we can prevent this page for indexing.
Format-
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<META NAME="ROBOTS" CONTENT= “NOINDEX, NOFOLLOW”>
<META NAME="ROBOTS" CONTENT= “INDEX, NOFOLLOW”>
<META NAME="ROBOTS" CONTENT= “NOINDEX, FOLLOW”>
<META NAME="ROBOTS" CONTENT= “ALL”>
<META NAME="ROBOTS" CONTENT= “NONE”> 
 Here
<META NAME="ROBOTS" CONTENT= “ALL”> is equivalent to
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
and
 <META NAME="ROBOTS" CONTENT= “NONE”> is equivalent to
 <META NAME="ROBOTS" CONTENT= “NOINDEX, NOFOLLOW”>
 Note

NOINDEX - prevents the page from being included in the index.

NOFOLLOW- prevents Googlebot from following any links on the page.



 

Monday, 28 December 2015

Prevent your Blogger to be Country Specific




If you want to prevent your blog to be country specific or in other word we can say if you want to make your blog URL as URL.com then you have to follow the given instruction.

1. Go To Your Blogger Dashboard.
2. Click On Template.
3. Then Click On Edit Html.
4. Press CTRL+F And Find </head>
5. Copy The Given Script And Paste It Before </head> Tag.
 


<script type="text/javascript">
var blog = document.location.hostname;
var slug = document.location.pathname;
var ctld = blog.substr(blog.lastIndexOf("."));
if (ctld != ".com") {
var ncr = "http://" + blog.substr(0, blog.indexOf("."));
ncr += ".blogspot.com/ncr" + slug;
window.location.replace(ncr);
}
</script>

6. Now Click On Save Button.

Thursday, 24 December 2015

What is Robots.txt File


We use robots.txt to give instruction to robots about your site. If you want that some URL of your website not visited by robot then you can use it. Before visiting your Web URL robots checks whether it is allowed to visit or not. If you disallow then robots will not visit any page on the site.


User-agent: *


Disallow: /


Disallow: /~joe/bar.html


Here “User-agent: *” means robots can visit the whole web page.


The “Disallow: /" means robots can’t visit any page on the website


The  “~joe/bar.html: /” means robots can’t visit this page “joe/bar.html”.