Showing posts with label Website. Show all posts
Showing posts with label Website. Show all posts

Wednesday, 23 May 2018

How to run a Javascript Function on Page loading

It is a common necessity that web developers face to run a javascript function at the time of page loading. Here we have got two easy ways to that. The second way can be used to display an animation, if you use your brain to do that.

By Using window.onload

<script type="text/javascript">
    window.onload = initialize();
   function initialize()
  {
      //Code to be implemented at page load
  }
</script>
The method described above is the easiest way to run a javascript function at the time of page load. window.onload is the command that can run any desired function at the time of page load.

By Using setInterval :

<p id="demo"><br /></p>
<button onclick="clearInterval(myVar)">Stop time</button>
<script>
var d = 10;
var myVar = setInterval(myTimer, 1000);
function myTimer()
   {
    document.getElementById("demo").innerHTML = d ;
    d = d-1;
    if (d==0)  {clearInterval(myVar);}
   }
</script>
In the above script myvar is a variable declared inside the script, which initializes and calls a function using setInterval. It runs the function mytimer again and again after every 1000 milliseconds (i.e. 1 second). It is a good way to run an animation at the time of page loading. In the above script a countdown from 10 to 1 is displayed, which either stops after reaching 1 or when the user click the button Stop Time.

Wednesday, 28 May 2014

Fetch as Google has Changed : Unlimited Fetch and Render

Fetch as Google


"Fetch as Google" is a common tool used by webmasters to index their latest website content on Google. Once you fetch the post or page and then index it, its indexed in Google search engine within a few minutes. I have used it several times myself. But today i noticed some changes in this tool and i am discussing it here.


New Fetch and Render Button


Previously we use to get a "Fetch" button. But now there are two buttons, first is "Fetch" and second is "Fetch and Render" . Here Rendering means that Google will take a screen shot of the page that you have rendered. Previous Google just used to Fetch the text content but now the rendering feature enable it to take screen shot of the page.



Unlimited Fetch and Render ?


Previously there was a limit of 500 fetches/week for every Google Webmasters account. And this limit is still there. Frankly speaking i have never used this limit to the maximum amount. So even if google st it to unlimited then it will not increase usage of this tool. But its the decision of Google to keep it on 500 fetches/week.

I am using this tool from past few years and will continue to use it. I will update the information on this page after using the new features of "Fetch as Google" .

Wednesday, 29 May 2013

How to Embed a PDF file in a Website using HTML Code

You must have seen a number of websites, showing pdf files directly on their webpages instead of giving a download link for that pdf file. You can also do it on your own blog or website. Bestrix.blogspot.com will demonstrate how to do it using a very simple method.

 How to Embed a PDF file in a Website using HTML Code 

You have to use very simple HTML code to embed a pdf file in your website. It would be better if the PDF is of your own and uploaded on server. Just collect the link of the PDF file and then follow the following steps to embed PDF on your website.
1) Open the HTML code of the Webpage on which you want to embed the PDF file.
2) Go to the exact location where you want to show it on your webpage.
3) Add the following code :
 <embed src="URL_of_the_PDF_file.pdf" width="550" height="750"></embed>
4) URL of the PDF file be added in the src field. Width and Height can be adjusted according to the display space on your website.
Given below is a simple example of one such PDF file. I hope you will use this simple code to embed PDF files on your webpages.

Tuesday, 28 May 2013

How to Find Latest \ Last Indexed Pages of a website on Google

Those who own a website always want to get their latest posts / pages indexed in google, so that people see those pages in google search results. Here bestrix.blogspot.com will describe a simple method to find if the latest page/ post on your website / blog is indexed by google or not.

How to Find Latest \ Last Indexed Pages of a website on Google

To find the latest indexed pages of a website on Google, you have to follow the following steps. Here i am taking example of my website bestrix.blogspot.com .
1) Open Google and search site:yoursitename.com . The image below show search for site:bestrix.blogspot.com .

2) Once the results are displayed, click on the Search Tools button. It will show various advanced search options.
3) Now click on the dropdown menu named "Any Time". It will show various timeframe options as shown in the image below. You have to select the timeframe that suits you best.
4) Here i have chosen the option of Past Month. After that you will get a dropdown menu named "Sorted by Relevance", as shown in the image below.
5) When you click "Sorted by Relevance", you will get an option to "sort by date" as shown is the image below.
6) Once it sorted by date your results are sorted in the order they are indexed by google.
This is the best method to find latest indexed pages of a website.  


Thursday, 16 May 2013

How to Remove Country Specific URL from Blogspot / Blogger Site | Remove .in .fr .ca

Sometime Country Specific URL becomes a problem for web developers. For Example my blog bestrix.blogspot.com use to open as bestrix.blogspot.in while it is being accessed from India. But it cause some apps to not work on that country specific URL as they are meant to run on .com domain name. So i did a little R&D to get a solution to this problem. And now here is the solution.

How to Remove Country Specific URL from Blogspot / Blogger
Follow the following steps and remove the .in / .fr / .ca / .au / .pk from your blogger site and get .com domain name from all over the world:

  • Login to you blogger Account
  • Go to Template and Edit HTML
  • Try to find the <head> in the HTML code. Most probably it will on the top of the code.
  • Paste the following code just below the <head>
<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>

  • Save Template and enjoy the .com domain name.

I hope that using this trick you will be able to get a .com domain name instead of country specific URL. You are most welcome to comment on this post if you find it helpful and interesting.

Tuesday, 14 May 2013

How to Reduce Photo Size Less than 20 KB / 10 kb / 100 KB Online

Most of us want to reduce size of images stored in our computers either to save space or to post them online. Sometimes we need it while applying for some job / recruitment and need a scanned photo
( size below 20 KB / 12 KB / 10 KB ) to upload on the official site. If the photo is above the specified limit it may be rejected. Advanced users know how to reduce image size by using iamge editing tools. But novice users find it dificult.

How to Reduce Photo Size Less than 20 KB

Here we are providing a simple tool that will help you to reduce the image size online. Using it you can change the photo to a specified dimension and also check its preview. Reducing the image size has never been so easy. If you find this tool helpful then you are most welcome to comment on this article.
Reducing the image size is not an easy task for those who don't know much about image editing. But its an easy task using this image size reducer tool. Reducing the image size is now a kids play. Just upload the file that you want to reduce and its smaller version (with reduced size) in seconds. Just download that reduced size image and use it where ever you want.
Till now i have received various comments who have found this image size reducing applet useful. You can recommend it to your those friends who don't have sufficient knowledge of image editing and they will never ask you again how to reduce image size.

You can reduce the image size by using a Windows Paint. But its not as perfect as the tool provided above. If you want to know how to use MS Paint to reduce image size then visit the following page.
How to Reduce Image Size using Paint : Read More 

People find this page while Searching for :
  • how to reduce photo size below 12 kb 
  • how to reduce image size below 10 kb
  • decrease size of photo
  • Photo size reducing tool 

Friday, 26 April 2013

Create a Website for Free with Unlimited Storage Space and Pages

We are living in the age of Internet, where everybody want to make his presence online. By creating a website you can easily do it. But real question is how to do it for free ? Creating a website for free is not an impossible task. You just need access to internet and basic knowledge of internet. Knowledge of HTML can be an added advantage for you.

Create a Website for Free

The easiest way to create a website for free is to make it using a service provided by Google. Its name is Blogger. You need a google account to create the website. You can register on www.blogger.com with that google account. After that you can register for free website name. The name of the website will be like www.yourname.blogspot.com . You can choose any name that is not already occupied by anybody else but you can't remove ".blogspot.com" from the website name.  

Create a Free Website with Unlimited Storage Space

By creating a free website on blogger you get unlimited storage space for text and multimedia content. It provide you various templates for free. No other webhost provide such a fast service as google, thats too for free. our website will never be down, and you will not need to pay anything for that. You can also earn from that website using a number of different methods. Bestrix.blogspot.com will tell you more about these methods in next posts.

Create a Website for Free with Unlimited Pages

In this free website on blogger you get access to making unlimited pages. There are two type of pages, one is called "page" and second is "post". You will know more about it in next posts by bestrix.blogspot.com . We have seen some websites posting hundreds of such pages every day.

All these features of blogger make it the best free website provider on internet. We hope that you like the content provided in this article and will utilize in near future. Please comment to share what you feel about this article.

Visitors come here searching for following terms :

  • create a website for free 
  • create a website for free now 
  • create a website for free from scratch 
  • create a website for free on google 
  • create a website for free easy 
  • create a website for free kids 
  • create a website for free using google 
  • create a website for free online 
  • create a website for free forever 
  • create a website for free no cost 
  • create a website for free and publish for free 
  • create a website for free and earn money from it 
  • create a website for free and easy 
  • create a website for absolutely free 
  • create a website for free blogspot 
  • create a website for free no charge 
  • make a website for free no download 
  • make a website for free google 


Thursday, 25 April 2013

How to Find How Much a Website is Worth | Measure Cost of a Website

How much a website is Worth ?

There are various factors on which the cost of a website depends. It inclues the count of daily visitors and the ability to earn money from that traffic. There are some websites on internet which can measure the daily earning capability of your website and also calculate the worth of your website .

Why do you want to measure the cost of a website? 

Answer is very simple. You are one of these people
1) The Owner of the Website
2) Competitor of the Website
3) Want to purchase that website

How to Find How Much a Website is Worth 

However there are various websites which can measure the worth of a website but most of them provide completely incorrect results. Here bestrix.blogspot.com will provide you a website that provide nearly correct results. The name of that website is http://www.getwebsitevalue.com  .
Just open this website and enter the name of your website in the text box and press the calculate button. It will show the daily earning capability of that website and its overall worth.

Friday, 12 April 2013

How to Download MP3 form Youtube Video Online for Free

Download MP3 from Youtube Video

Most of want to get the latest songs in our PCs or Mobile Phone, but don't know from where to get it. Sometimes its impossible to get it from MP3 download sites as its not available there. In such case we can download it from Youtube, the best video site in world. But the problem lies here. Youtube don't provide any download option. In that case bestrix.blogspot.com will provide a simple solution.

How to Download MP3 form Youtube Video Online for Free

1) Copy the URL of the video from which you want to extract the MP3 Audio
2) Open Keepvid.com
3) Paste the Youtube video URL in the text box and click on download button.
4) Now it may ask you run some third party scripts. Allow them to run.
5) It will give you various resolution of this video which are available for download. Apart from that it will show a "Download MP3" link at bottom.
6) Go to "Download Mp3" and it may show two quality MP3 of that video. Use any one them to download the Mp3 audio.

As per my knowledge, its the best way to extract mp3 from a youtube video. If you have some other idea in your mind you are free to share it in the comment section. Please do tell us if this method is useful or not.

How to Download Videos from Youtube in HD or Low Quality

Most of the Youtube users wonder that how they can download videos from youtube. Its not as hard as it seems to be. In this article bestrix.blogspot.com will demonstrate how to download youtube videos in any resolution that you desire.
You can download it in any of the resolutions available on youtube. Either its Full HD or Low Resolution 3GP format.
Personally i have tried a number of methods to download Videos from Youtube. Some of them are quiet common like IDM and FreeCoder Toolbar, but none of them made me satisfied. The method that bestrix.blogspot.com will tell you is one of the best ways to do it.

How to Download Videos from Youtube


1). Copy the URL of the video that you want to download.
2). Open Keepvid.com
3). Paste the Video URL in the test box and click on Download.
4). If it ask to run some script on your PC, the  allow it.
5). It will display a list of different resolution videos available with their download size in MBs.
6). Now download the video of your choice.

If you like this method then please comment to provide a review. Even if you have a better way to it, show it to others and comment.

Saturday, 16 March 2013

Why Blogger is Better than other Server Hosted websites ?

What is Blogger ?

Blogger is the best thing for those people who want to have a website or Blog at no cost. It means blogger is Free. But it does not mean that blogger is not good. Its better most of the other website platform in the market. It provides unlimited free space and bandwidth for free.
You need not to worry about space to add more matter in your website and also you don't need to to think about bandwidth when your blog is attracting more visitors.

Why Blogger is better than Server Hosted Websites?


  • Best Thing for Free : Blogger is a service by Google, which itself defines its quality. Uptime of your website will be 100% on blogger.
  • Unlimited : No limit of Space or Bandwidth.
  • No Knowledge of HTML is Necessary: Even if you are not good in HTML, you can create a website using Blogger. You can design the website by using a user friendly interface. A number of free widgets are available on net.
  • Dynamic website: In blogger you can control the look and content of your website very easily. User can comment on your blogger website very easily and you have full control over it.
  • Better Indexing: If you have some knowledge of SEO, then you know the importance of Indexing. Indexing rate of Blogger is better than others.

Friday, 15 March 2013

How to create a Free Website / Blog and Earn Money

Dear viewers you must have reached this page because you want to earn money by creating a website. Its not an impossible task but also its not as simple as it seems.

Warning : If you are thinking that you know some basics to create a website or blog and you will write a few pages and then start earning, then its simply a foolish idea. I have seen a number of people wasting their time and money in this thing. Don't get into it if you don't have proper knowledge and planning to earn through a website. I know that most of you will not take it seriously and think that they have proper knowledge and planning. So if you think that you have proper knowledge and planning then keep reading and this article might help you.

How to create a Free Website / Blog ?

Its the first step. To create a free website i will suggest you to use blogger. I am not saying that because i am using it on my own website bestrix.blogspot.com. Its because blogger is a service by Google which provides free space and unlimited bandwidth. If you want same thing on a hosting server, you will have to pay a lot.

Before creating a blog / website you must choose your niche. Niche is a topic on which you want to create a website. Always choose a topic about which you know a lot and can write about it. Post some articles on daily basis. Its good if you have some knowledge of SEO (Search Engine Optimization). If you are lacking it then must attain some basic knowledge of it and continue to keep it growing.

How to Earn using a Website or Blog ?

Its the most difficult part for some people. Before you earn some thing through your website, it must have a good quantity of visitors. Then you can apply for Google Adsense Account, to get advertisements on your website. There are other ad networks as well, but i prefer Adsense.

Tuesday, 12 March 2013

How to Check Index Status of Your Website without using Webmasters Tool

What is Index Status ?

Index Status is checking how many pages of your website / blog are indexed on search engines. Especially search Engine like Google. If your new pages / posts are not indexed in Google then they will not be shown in the search results.
That's why Indexing of a site is important.

Indexing and Google Webmasters

You can easily find your site's index status if you are using Google Webmasters. But it does not show the current results. It will show you the data that is few hours old or even days old. In that case how can you find if your recent posts are indexed or not. 

How to check Index Status without using Webmasters ?

There are various ways to find it. I will discuss few methods which i have implement on my website bestrix.blogspot.com to check index status. If you have posted an article on your website few minutes ago and want to find weather its indexed or not, then there are following methods to find it.

Method 1

Search the title of you post in Google. For example i searched for "How to make Dynamic URL in HTML by using Events" , which was recently published on my blog. It showed the following result, which means its indexed.

Method 2 :

Search the URL of your post to find the exact result, as i have done in the screenshot below.
If you want to check more accurate results, then you can search for it inside the inverted commas.
If your post / page is not indexed then you will get the following result

Tuesday, 5 March 2013

Using Two Adsense Accounts from a Single Computer / Laptop

Using Two Adsense Accounts from a one Computer / Laptop 

Its a common problem for some professional bloggers, when the want to access their Adsense Account from some different location such a cyber cafe or a friends PC from where others might have accessed their Adsense accounts.

Here bestrix.blogspot.com will try to give answers to some of such common questions which might help you.
Tips for your Adsense Account
Always use a single PC to open your Adsense account to remain on the safer side.
Don't use a friends PC or Cyber Cafe to access it, as it might have been used for some illegal adsense activities such as illegal clicks on Ads.
If you are using a PC that is used for illegeal activities then most probably your account might get banned due by google bots which keep tracking such activities. And once your account is banned then its really tough to revoke it.
Even if your friend is not indulged in any illegal activity, don't use his system to open your account, as in that case google might think that its single person using two accounts on different names.
I have read on a google forum that in countries like India, Google allows only one account per family, so that such incidents don't occur.
Here is a screenshot from one such forum:


Sunday, 3 March 2013

How to Find Sitemap URL of Blogger / Blogspot Sites ?

Blogger / Blogspot Sitemap

Just like all other website blogger sites also have a sitemap but their sitemap URL is a little bit different from other sites.
Usually sitemap is like www.yoursitename.com/sitemap.xml
But you can't have such sitemap in blogger.
So you have got feed as sitemap.
There are two sitemap URLs for bloggers :
  • www.yourblog.blogspot.com/atom.xml?redirect=false
  • www.yourblog.blogspot.com/feeds/posts/default?=rss
I discovered these URLs while searching for the sitemap URL for this blog bestrix.blogspot.com .

Important Note : (update on 19-Mar-2018)
Using the above sitemaps we found that only 26 URLs are indexed by Webmaster, which is something annoying. So here is something new. Instead of using the above given URL (which are given years ago), please use the new sitemap URLs
  • www.yourblog.blogspot.com/sitemap.xml
  • www.yourblog.blogspot.com/sitemap.xml?page=1
  • www.yourblog.blogspot.com/sitemap.xml?page=2
The page "sitemap.xml" contains the full sitemap index, while "sitemap.xml?page=1" contains only 150 pages. So if your blog contain more posts than 150, then keep increasing the page number. You can submit all of those sitemap URLs in Webmasters for better indexing of your website.

Why do we need a Sitemap?

Sitemap is necessary for search engine bots to crawl each and every page of our website and get it indexed so that our website can appear in search results. If we have a sitemap then we can submit it to search engines so that they crawl every post / page of your blog.
You can also submit such URLs to Google Webmasters tool.

How to submit Blogger Sitemap to Google Webmasters

I am assuming that you have already added your blog to Google Webmasters tool.
Now got to "Optimizations" tab and click on "Sitemaps". Then go to "Add/Test Sitemap".
It will allow you to test your Sitemap URL and add it to webmasters.

Friday, 1 March 2013

How does my Website look on a Mobile Device ?

 


How does my Website look on a Mobile Device ? 

Its an obvious question for a serious website developer or blogger. Its really easy to check it and you must be excited to do it. In that case go to http://www.howtogomo.com/en/d/test-your-site/ . This website will not only provide your a complete idea of how your website look like on a mobile phone but you can also check its ratings.
So what are you waiting for. Just do it!
Here is is a screenshot of my website by using this tool. You will definitely love this tool. It could have been better if we are be able to surf our website using this tool, but its not possible.
Look of my website might be different from this screenshot as i will keep changing it.

Opera Mobile Emulator

If you are ready to install a application on your PC, then you can install Opera Mobile Emulator. It will show you how your website will open on different phones / smartphones in Opera Mini Browser. The only drawback that this emulator has is that it shows the view in Opera Mini browser only, not on the default browsers of these phones. You can download Opera Mobile Emulator from http://www.opera.com/developer/tools/mobile/ .


Thursday, 28 February 2013

Marquee HTML Code Example to Pause onmouseover in Middle

Marquee HTML Code Example to Pause onmouseover

Today i have been trying hard to create a marquee which can be paused when we take the cursor over it. However it took me an hour to do so but in the end the answer was very simple. I am sharing it with you now.
Code:
<marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();">It will pause onMouseOver</marquee>
Result:
It will pause onMouseOver
When you will take your mouse over the scrolling text, it will pause there and when you take it out, it will resume. This functionality is provided by two events : onmouseover and onmouseout.
This code looks very simple but you can use it in very interesting style. Inspite of writing the text inside marquee, you can put some images or some links to give a good look to your website. I will show you one such example below.
---------------------------------
These two images also have two hyperlinks on them. Thus marquee can be used in a much interesting ways. Play with it and you will find much interesting things in it.

Tuesday, 26 February 2013

Why Zimbio.com is not Safe for Bloggers ?

Why Zimbio.com is not Safe for Bloggers ?

This seems to be an inappropriate topic but its true. I will tell you some facts which will justify my comment that Zimbio is not good, or rather its unsafe for professional bloggers.
Before we proceed just know something about Zimbio.com .

What is Zimbio.com ?

Zimbio.com attracts bloggers using the Livingly Media link at the bottom of their website. That link takes them to  "http://www.livingly.com/for-bloggers/", where they tell bloggers that if they post their content on Zimbio then they will get a wider audience, more views, and free publicity. (New Bloggers can easily get into this trap)
However Zimbio have a lot of content of their own but now most of the content posted there is from different blogs or websites. I came to know about that when content of one of my websites is copied by some other website and then they posted it on Zimbio.com . It was a major setback for me as those links were diverting a lot of traffic that should have been to my blog. Those links easily get ranked on Zimbio as zimbio is a high-ranking website and search engines give preference to content available on it.

Some facts you should know about Zimbio


  • If you post your content on Zimbio, then it become Creative Common (CC). Professional bloggers know what Creative Commons Licence means. It means that now your content is not yours, any body can use it.
  • If you put your content on Zimbio, then search engines will crawl it first and then on your website. (Due to the better ranking of Zimbio). Thus they might consider your content as duplicate content (while it not). Search engines don't know that have created an account on Zimbio and yourself posting it there. Serious bloggers know the effect of duplicate content on SERP.
  • In short term you might get better traffic from Zimbio but in long term you will loose your ranking in search engines.

What Google says about Zimbio.com : 

There is nothing better than google. Here is the link to diagnostic report of Google about Zimbio. Please read it.
http://google.com/safebrowsing/diagnostic?site=zimbio.com/&hl=en
As this report says that malicious software were noticed on Zimbio. I will never suggest you to use zimbio.
If you want to protect your blog from getting copied must read my post :  Find Websites Copying your content

Monday, 25 February 2013

Find Websites Copying your content: Secret Google Technique

Content copying is serious problem for professional bloggers. If somebody use your content without letting you know then nothing irritates you more than that. But good thing is that we can avoid it just by taking some simple precautions.
I used word precautions, because i am not going to ask you to use a widget or script to stop this. The purpose of this post is to be helpful to new bloggers who are not so tech-savvy.

So here we go :
Step 1: Use name of your blog or website in each post. There is no need to hyperlink it. Just use plain name. As i can use bestrix.blogspot.com. Now if someone copies your content, then most probably your blog/website name will be there. Because such copycats only remove links (as they appear blue). They don't have time read complete post and edit it. 
Step 2: Now search for your site name "bestrix.blogspot.com" (with inverted commas) on google once in a week (Like shown in the image below). On first few pages you will find links of your own site. But afterwards you might find sites which are copying your content.
Step 3: Now suppose you find a site "duplicate.com" and you want check how many posts it has copied.
Now you have to search for site:duplicate.com "bestrix.blogspot.com" .
Step 4: Now you can contact these website admins to remove those posts. If they don't then you can ask google to remove them from their SERP.

We will discuss it on our next post that how you can get copy-cat websites removed from search results of google. 

Saturday, 9 February 2013

Premium Adsense Account : How to get it ?

If you are on this page then you must be familiar with Adsense. Its a platform that can help you make money using your website. Now the question is "Adsense Premium". What are its benefits?
Who can be a Premium Adsense Publisher ? How to be a Premium Adsense Publisher ? All these question will be answered here.

What are the benefits of a Premium Adsense Account?

Its not easy to get a Premium Adsense Account, but if you have got it then you can get these facilities.

  • Higher CPC (Cost per click). That is more percentage of revenue that google is earning from ads.
  • Customized ads fill a number of different dimension (more than a simple account).
  • A dedicated Account Manager who can help you with your account queries.
  • Support in optimizing your website.
  • Monitization of Search Results.
  • You can adult content on your website and your account will not be banner. Usually Adsense have zero toleration on adult content but its not so in case of a Premium Account.

Who can be a Premium Adsense Publisher?

There are no fixed rules for that but in most cases you become a Premium Publisher on if your website have got following qualities in it.

  • It should have more than 20 million content page views per month (earlier it was 10 million).
  • It should have 5 million search queries per month.
  • The content on you site should be unique and original.
  • Your website should have a good reputation on internet.

How to be a Premium Adsense Publisher ?

I have seen a number of website administrators asking this question. The answer is simple. You can't apply for it. If your adsense earnings have reached a certain level and your website is performing well then you will get a invitation call from adsense account manager. So just wait and try to improve your website or blog.