Showing posts with label SEO. Show all posts
Showing posts with label SEO. Show all posts

Sunday, May 3, 2015

Index your web pages in google search engine in few seconds..!!

Index your web pages in google search engine in few seconds..!!



Once you published a New Blog Post then you started waiting for Googlebot to crawl your new post to be indexed in Google. But it took many hours to index and sometimes days. This is also seen that if you have a new Blog and your traffic is not so much then Google do not index your less popular post. Now what to do in this kind of situations? Many other Bloggers give advise to submitting your Blog to Google Webmaster Tools for fast indexing but in reality, this is also not working for Less Traffic Blogs.
But Now No-More waiting for Indexing. Here a Trick to Index your Post on Google within Seconds. I'm talking about Fetch as Google Tool in Webmaster Tools. Almost every Blogger has an account on Google Webmaster but we never saw it completely. Here I’m explaining about Fetch as Google tool, developed by Google Webmaster tools where you can submit your blog to crawl and indexed very fast. This is 100% working trick and safe. Many other sites posting many tricks to index fast through various ways but that's all tricks are illegal and against Google policies. Use this 100% safe trick.

So let's get Started
First if you do not have account on Google Webmaster Tools then Create new one and add your site to Webmaster tools. Then use below two steps:

Step 1:  Submit your Site's Sitemap.

1: Go to Webmasters Dashboard and Click on your Site

2: Then from the left side menu, Click on Crawl then Sitemaps.



 3: Click on Red "ADD/TEST SITEMAP" button.




4: Enter sitemap.xml in Text field.





5: Then Click Submit Sitemap.

6: Refresh the Page. Done.

Step 2: Trick to Index Fast.

1: Now, Click on Fetch as Google Option from Crawl.


2: Enter your Post's URL but without Domain name, example below. 

http://androidgeekhub.blogspot.in/2015/04/5-free-best-video-player-apps-for.html"


3: Then Click on Fetch Button.

4: Your URL Fetch properly.

5: Click on Submit to index Button.




6: A popup will Appeared. Choose Crawl only site URL Option and Click Go Button.


7: Done.

 Now your Post successfully Index on Google. If you want to check it then go to Google and Search for "site:your-post-link". 

Monday, April 20, 2015

How to Optimize Images For SEO Automatically


How to Optimize Images For SEO Automatically


This is done so that the images on your blog page automatically indexed by the search engines like google so you are not bothered by adding it manually (add a description of the <img alt = "description of the image" height = "125" scr = "/ image.png" width = "125" /> when posting images).

The way it can be said to be a hassle. With this automatic way each image has the same description with the title of the picture. Therefore, you should give them appropriate names for each picture to be posted. Why should Optimization For SEO Image Automatically? Because the image on the blog page is one medium that can be used for traffic on search engines because most Internet users are very likely to seek or simply browsing to look at pictures.



Here's how to install automated SEO code in the image Find </ body> tags on your blog template, then copy and paste the code below just above the </ body>

<script type='text/javascript'>
// <! [CDATA [
$(document).ready(function() {
$('img').each(function(){
var $img = $(this);
var filename = $img.attr('src')
$img.attr('alt', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));
});
});
//]]>
</script>
<script type='text/javascript'>
// <! [CDATA [
$(document).ready(function() {
$('img').each(function(){
var $img = $(this);
var filename = $img.attr('src')
$img.attr('title', filename.substring((filename.lastIndexOf('/'))+1, filename.lastIndexOf('.')));
});
});
//]]>
</script>
<script type='text/javascript'>
// <! [CDATA [
was scrollwork hours = null;
$(window).scroll(function() {
   var viewportHeight = $(this).height(),
       scrollbarHeight = viewportHeight / $(document).height() * viewportHeight,
       progress = $(this).scrollTop() / ($(document).height() - viewportHeight),
       distance = progress * (viewportHeight - scrollbarHeight) + scrollbarHeight / 2 - $('#scroll').height() / 2;
    $('#scroll')
        .css('top', distance)
        .text(' (' + Math.round(progress * 100) + '%)')
        .fadeIn (100);
    if (scrollTimer !== null) {
        clearTimeout(scrollTimer);
    }
    scrollTimer = setTimeout(function() {
        $('#scroll').fadeOut();
    }, 1500);
});
//]]>
</script>

Next save the template.


Every picture of your blog post in an article automatically will have SEO friendly code.