Archive

Archive for the ‘SEO’ Category

Keyword Ranking Tools

January 11th, 2007 Bill Comments off

Although I prefer to use the overture keyword tool to perform keyword discovery and research, it can be useful to have other resources to find the value of different keywords. Listed below are a few other sites that will help you get a general idea of keyword rankings.

http://www.goodkeywords.com/
http://www.digitalpoint.com/tools/keywords/
http://www.wordtracker.com/free-trial.html
http://www.adwordanalyzer.com/
http://www.iwebtool.com/keyword_lookup/
http://www.wordtracker.com
http://www.keywordelite.com
http://www.rankalert.net/keyword-popularity.php

Most of these other keyword tools dont have as large a sample to draw their data, but they can provide you with some interesting data that allows you to compare them to overture rankings and give you a more well-rounded view on your selected keywords.

If you have any keyword tools that should be added to this list, please contact us with your suggestions.

Categories: SEO Tags:

SEO plugins for Firefox

October 2nd, 2006 Bill Comments off

As an internet marketer and SEO professional, I use a web browser very often. And I have found that firefox tends to be more useful to get my work done more quickly than any other browser i have used. I’ve put together a short list of good plugins for firefox that can make common SEO tasks less cumbersome. Most of these plugins are useful to designers and web develpoers also. But mainly they focus on common SEO tasks.

If you have any questions about these SEO plugins for firefox, please dont hesitate to contact us.

Categories: SEO Tags:

Ambatchdotcom Seocontest

July 17th, 2006 Bill 1 comment

Well, it appears there is yet another seo contest going on. The “special” keywords this time are “Ambatchdotcom Seocontest”. I have never heard of this website before and it appears noone i know has heard of them either. The rules of the contest are provided here: World SEO Championship

I am guessing that many in the SEO community are tired of these contests and there wont be a large number of participants. That should make the contest a bit easier. However, i am a bit tired of the seo contest also, and busy with other projects so I wont be able to devote much time to this.

So, i thought i would make this entry in my blog here and see how things go. If I take the lead early on perhaps i will become more motivated to maintain the rankings. Otherwise best of luck to you in the Ambatchdotcom Seocontest.

Categories: SEO Tags:

SEO Copywriting Guide

June 8th, 2006 Bill Comments off

SEO Copywriting is a method of writing copy for the web that targets specific search terms while maintaining its usefulness for the reader. The purpose of search engine optimization copywriting is to rank highly in the search engines for the targetted keyword. In addition to the viewable text of the page, SEO copy writing attends to other textual elements of the page such as: page title, Description, Keywords, headings, and alt text.

The main concept behind SEO Copywriting is that search engines want pages with relevant content that is useful to the user. It is in fact the sole purpose of the search engine to provide relevant useful results. So, the strategy of SEO copywriting is to increase the relevancy of a web page to a specific search. This strategy provide a logical progression for developing text and content for the web;

SEO copywriting steps:

1. Keyword Research
We must first know what terms are being searched for in order to develop content that is relevant to a specific search. There are several methods for researching which keywords are good to target. More on keyword research. Once we have accumulated a list of keywords that are relevant to our website, we can begine creating content.

2. One Page per Keyword
Once we have created a list of keywords we would like to target, we will then create at least one page for each keyword in our list. Some SEO copywriters will attempt try to target more than one keyword per page but this is not the most effective method for gaining good results in the search engines.

3. Write the SEO Copy
Now that we have chosen one keyword to target, we can begin writing the main copy for our page. I reccomend writing around 400-750 words using the keyword once every 4-5 sentences. While wirting the SEO copy, it is important to maintain a natural read to the user. The keyword should not be noticeable to the reader – it should flow nicely with the copy. Also, it is important not to overuse your keyword. Do not try to put your keyword in every sentence – the search engines may see this as spam and rank your site negatively. Once you have finished the main copy of the page, you are ready for the finishing touches.

4. SEO copy: final touches
There are several elements of the page that are not immediately recognized by the reader, but are big factors in the ranking of a page in the search engines. The targetted keyword should be present in all of the following elements:

  • Title
  • File name
  • Description
  • Keywords
  • Image ALT tags
  • Header / H1 tag

5. The copy is now search engine optimized
Once you have completed these steps, your copy should be well optimized for the search engines. Now you just need to building links pointing to your pages and you are on your way to high rankings.

After the Copy is Written
SEO Copywriting is just the beginning. The use of good SEO copy will only get you so far in the search engine rankings. SEO copywriting, by itself, only works for search terms that are not highly competitive. For more competitive search terms, other, more aggressive, methods are required for top rankings in the search engines.

About this SEO Copywriting Guide
This guide is provided by eCentral Marketing, a small business SEO firm in Washington DC, and is about SEO copywriting and not about copywriting in general. SEO Copywriting is specialized writing which can improve the rankings of a website. But the copy can only do so much. If the website fails to sell its products/services, the effort of the SEO copywriting is all for nothing.

If you enjoyed this copywriting guide, please digg it.

Categories: SEO Tags:

SEO Crossword Puzzle

May 15th, 2006 Bill Comments off

I had some free time this weekend and thought it would be fun to make a corssword for SEO. Because of the javascript and size of the puzzle i couldnt add it to this blog.

So, the crossword puzzle can be found here: SEO Crossword Puzzle

I hope some of you enjoy taking a break from your work to test your SEO knowledge. If you enjoy the puzzle, please digg it.

If you would like to suggest some SEO terms to be added to the puzzle, please leave a comment in this blog or contact me via the contact us form on this website.

Categories: SEO Tags:

SEO for Wordpress

April 28th, 2006 Bill Comments off

Wordpress is pretty well setup for SEO right out of the box. That being said, there are a few things you can do to make it more friendly to the search engines. I found this quick tip that makes SEO for your wordpress blog even better.

The instructions below will enable your wordpress blog title and meta description to become relevant to the on-page content. Instead of having the same title for each page of your blog, the title for each page will use the title of the post. And, the description will be a handful of words taken from the content of your post.

Here’s what you do:

In your theme’s directory, open the file “header.php.”
Replace the current title with:

<?php if(is_home()) { echo’<title>’; bloginfo(’name’); wp_title();
echo’</title>’; } else { echo’<title>’; the_title(); echo ‘ | ‘; bloginfo(’name’);
echo ‘</title>’; } ?>

Under that, add:

<meta name="description" content="<?php if ( is_single() ) {

single_post_title(”, true);

} else {

bloginfo(’name’); echo " – "; bloginfo(’description’);

}

?>" />

 

The first code change will put the blog name in the title, and use the post title and blog name as the title on the post pages.

The second part will put the blog name and description (found in the Options / General section in the Tagline field) on the home page (for the meta description), and put the post title as the description on the post pages.

I hope that helps some of you. I got this code from the “SEO Scoop” blog here.

Categories: SEO Tags:

Best SEO Blogs and Forums

April 20th, 2006 Bill 1 comment

My favorite SEO blog is, of course, the one you are reading. That being said, this blog, by itself, is not a comprehensive resource for learning about the world of SEO and online marketing.

Listed below are a handful of blogs and forums that are a great resource for SEO and online marketing.

Digital Point Forums
SEO Chat
Webmaster World
HighRankings
Search Guild
SEO Company Forums
SEO Book.com
ABAKUS SEM/SEO Blog
Search Engine Roundtable
Scott Fish
SEO Scoop
Oilman
Stuntdubl SEM
Matt Cutts Blog
RealSEO.com
fantomNews
SEOmoz.org
Link Building Blog
Jim Boykin Blog
Dan Thies Blog
searchdope.com

Although i havent linked to each of these forums and blogs, a quick search in Google should land you in the right place. I hope these sites help you to learn as much as they have helped me.

Categories: SEO Tags:

SEO Optimization

April 13th, 2006 Bill Comments off

While the title of this post may seem strange to those of you that know what SEO stand for, it has come to my attentiont that this keyphrase is searched for very frequently on the web. Which of course means that good rankings for this term may provide some good traffic. Since this phrase is a little strange and redundant to people who know what SEO stands for, there isnt much competition for this keyword either. So, I thought I might try to capture some of this traffic with this post i my blog.

For those of you that dont know what SEO stands for, let me enlighten you. S.E.O. stands for: search enginge optimization. Which makes the phrase “seo optimization” a bit redundant. You wouldnt say search engine optimization optimization would you? Heh, I hope not.

In any case, if you are interested in learning more about SEO or are looking for someone to help you with SEO optimization, you have come to the right place. You may learn a few things just by browsing this blog and you can learn what SEO services we offer here.

Also, thanks to AaronsIdeas.com for bringing this valuable keyword to my attention.

Categories: SEO Tags:

Google PR update

April 5th, 2006 Bill Comments off

Looks like google is updating PR again. Most of my sites are experiencing an increase in PR across most google datacenters. This site, which is only a few months old, has jumped from a PR0 to a PR5. Not bad for a new website. Rankings in google have not a had a similar jump but that just goes to show you that PR doesnt have as much to do with rankings as people would like to beleive.

This PR update comes pretty quickly since the last update which was only about 2 months ago. Typically Google only updates PR every 4-6 months. Matt Cutts, “the google guy”, did mention in his blog that google may begin updating PR more frequently than they had in the past.

Its hard to say how this change will affect SEO techniques but it seems that it will be easier to get other sites to link to a newish site – rather than waiting 5 months till your site has the PR to attract other sites to link to yours.

Categories: SEO Tags:

Keyword Directories – SEO File Structure

March 27th, 2006 Bill Comments off

While it is important to use keywords within the content of a webpage, it also important to use keywords within the URL of a page. The simplest way to achieve keyword use in the URL is to create directories and filenames that contain keywords. Keyword use in directory names and file names is an indicator to the search engines that the content within that directory or file is relevant to the keyword.

As with any element of a website, keyword use should be used in moderation and not in a spammy fashion. Overuse of keywords can cause penalties from the search engines. When using keywords in the name of a directory or filename, multiple words can be seperated by a hyphen (-) or no space at all – Underscores are not the preferred method for SEO purposes.

The structure of keyword named directories should be organized in a logical fashion going from the more broad keywords to the more specific.

So, if your website sells tennis rackets – A logical directory structure might be directories with manufacturer names within a directory named for the product. Here’s an example:

site1.com/tennis-rackets/wilson/ – the keywords for this URL are: “wilson tennis rackets”
site1.com/tennis-rackets/prince/ – the keywords for this URL are: “prince tennis rackets”

If your site offers many different products from a manufacturer, you may want to use a different approach for your file structure…

site2.com/wilson/tennis-rackets/ – the keywords for this URL are: “wilson tennis rackets”
site2.com/wilson/basketballs/- the keywords for this URL are: “wilson basketballs”
site2.com/wilson/golf-clubs/- the keywords for this URL are: “wilson golf clubs”
site2.com/prince/tennis-rackets/ – the keywords for this URL are: “prince tennis rackets”

The important thing to remember when creating your file structure is to plan ahead and try to create a logical structure for the content of your site that goes from very few broad termed directories to many more specific named directories. Use these highlights to guide you.

  • Logical Structure of the information
  • Go from Broad to Specific
  • Go from few to many directories
  • Use keywords in moderation

A good article about developing logical site structure can be found here. Also a website that makes good use of these stategies is automotive.com – browse around that site and take note of how the words in the URL reinforce the keywords that are on the page.

Categories: SEO Tags: