Archive for December, 2008

Quick tips for checking your status with Google.

Friday, December 19th, 2008

If you want to know if your site is indexed with Google and what kind of information is cached you can do a simple web search through Google. Just search for your site with one of the designated prefixes.

For example:
If you search for ’site:yourdomainnamehere.com’ you will see all of the pages from your site that have been indexed. You can also use the prefixes link:, cache:,info: and related:.

Custom Search

Want to track an IP Address?

Thursday, December 18th, 2008

If you want to track an IP address it’s very simple. Just enter the IP address you are looking for in the box below and click submit.

IP Address:

Add a bookmark link to encourage repeat traffic.

Tuesday, December 16th, 2008

Creating a bookmark link on your page allows visitors to add you page to their list of favorites. Once you have them there, you might as well do some self promotion.

The bookmark link I prefer is JavaScript and looks like this:

Place this code in the Head section of your site:

<script language=”JAVASCRIPT” type=”TEXT/JAVASCRIPT”>
var url =”http://www.yoursite.com;
var title = “Name of your site”;
function makeLink(){
if(document.all)window.external.AddFavorite(url,title)
}
// –>
</script>

Place this code where you want your bookmark link to appear:

<a href=”javascript:makeLink()”>Bookmark Us!</a>