Author Archive

Search engine friendly H1’s and other headlines

May 11th, 2006 by Adam Edmondson

The use of the headline (H1, H2, H3, etc.) tag in your website’s HTML coding is a beneficial optimization technique. A headline tag, when used with keyword phrases, adds emphasis to those keywords in the eyes of a search engine. Every little bit of emphasis we can place on our target keyword phrases can help in the overall optimization puzzle.

Making a headline look like the rest of your site while keeping it search engine friendly can be tricky. Most HTML editors like Frontpage and Dreamweaver will, by most defaults, try to style your headlines with FONT tags. FONT tag control of a headline is not search engine friendly, and actually overrides the power of the headline in regards to optimization. But, with a little bit of CSS (cascading style sheets) knowledge, we can make our headlines appear in any font color, face or size that we want, but remain visible as a standard headline to the search engines.

Here is an example of a standard H1 tag used on the word “Hello”:

Hello

The HTML would look like this:


Hello

It’s big and ugly. But, this is how we want the search engines to see it. So now we need to style it for our visitors. Let’s say that your site has a blue theme, uses Verdana font, and uses small font sizes (8pt or smaller). This headline would not match your site at all. Let’s try to code it to look like this:

Hello

This is our same H1 tag, but with the color blue, the font face Verdana, bolded, and a font size of 8pt. Ok, there are three ways to do this with CSS formatting:

  1. Include CSS styling to all headlines (H1, H2, etc.) directly in a stylesheet if you are already using one. Check your HEAD tags for the call to a file that ends in the “.css” extension.
  2. Include the CSS styling to all headlines directly in the HEAD area without using a stylesheet.
  3. Include the CSS style property directly to the headline tag itself.

Option 1:

In your pre-existing stylesheet, add this snip of code:

H1 {
font-weight: bold
color: #0000FF;
font-family: Verdana, sans-serif;
font-size: 8pt;
}

Change your properties for each variable as you desire. You can use this technique for H1’s, H2’s etc.

Option 2:

If you do not use an external stylesheet, but would rather add the style properties directly to your HEAD tags area, add this snip of code anywhere in the HEAD:


Change your properties for each variable as you desire. You can use this technique for H1’s, H2’s etc.

Option 3:

Use the following inline code right in your headline tag:


Hello

Change your properties for each variable as you desire. You can use this technique for H1’s, H2’s etc.

What you absolutely never want to see is a headline tag surrounded by FONT tags. Make sure that your headlines are free from any other external formatting in your site. You now have search engine friendly headline tags.

Dedicated and Shared IP Addresses

April 7th, 2006 by Adam Edmondson

Some of us have been discussing lately the topic of dedicated and shared IP addresses for websites, and how they may affect the ability for sites to rank. It’s a long-known fact that sharing an IP address with a site that has been penalized or banned is almost guaranteed to be problems for everyone else who shares that IP. Once a search engine decides to penalize or ban a particular domain, they may choose to ban the IP address that the domain is hosted on. Well guess what… any site that is hosted on that IP will also be banned! Not fair, you say? Don’t let this happen to you — get a dedicated IP address for your site immediately!

Now, sharing an IP with other sites doesn’t guarantee that you will be banned or penalized by a search engine, but it’s just not worth the risk. If your website is hosted on the same IP as a porn site, you’re really asking for trouble. The same goes for pharmacy and casino sites. Most hosting companies will upgrade your service to a dedicated IP for about $3-5 a month in addition to your regular hosting fees. Well worth the price, in my opinion.

Here are the tools that you can use for free to see not only how many sites share an IP with your domain, but also see what those domain names are that you’re sharing with:

  • Go to http://www.dnsstuff.com/
  • Enter the domain name into the “Domain Info” box and click “Get Info”
  • You will be taken to a page with some terrific information about the domain. The IP address for the site will be listed halfway down the page on the right side, and it will be a link
  • Click the IP address link, and under “Reverse IP”, you will see how many sites this IP address hosts. You can also click on that result and dig even deeper.
  • Click the “X websites” link for the reverse IP lookup. On your first visit, you will have to register for free. Sign up using an email address that you can actually check (a confirmation link will come via email to activate your membership). Once you are a member, this tool will show you every domain name on the server. “1 websites” means you are the only domain on that server, and it’s probably dedicated.

You can always contact your hosting company directly to verify if you have a dedicated IP address or not. If you don’t, request it. If your host doesn’t offer dedicated IPs, switch hosting companies right away.