Three Little Known HTML Codes to Help Search Engines

by Andrea @ Savings Lifestyle on February 24, 2010

As bloggers we spend time making sure our site looks attractive to visitors. Lets face it. The idea “don’t judge a book by its cover” is nice in theory, but often our first-time visitors do just that.

However, when a search engine stops by to index your site, they don’t look at the outside beauty. Instead, they go “under the hood” to read your HTML coding. What does it say to them? Well, one rule to live by when it comes to HTML is the simpler the better. If you have an lot of extra unnecessary coding, it can slow down and confuse the search engine’s crawler. However, there are a few simple codes you can add to help them out when indexing your site.

When niche blogging, you can get so comfortable within your niche that you start to use acronyms and abbreviations in your posts that are familiar to you and your readers. These “little comforts” may make sense to you, but to the crawler, they are just gibberish.

Let me give you an example. Lets say you blog about once a month cooking and often use the term “OAMC” within your posts. When a search engine’s crawler stops by your site to read your most recent post, they’ll read the abbreviation exactly as written – “O” “A” “M” “C”. To the search engine crawler it’s just a bunch of random letters and index it as so. Later, when someone who’s searching for a blog just like yours types “once a month cooking” into the search engine, that recent post that you worked so hard on won’t come up and the person may never find your site.

Yes, you can add meta tags to your posts to help out, but most bloggers don’t do this for every single post. Instead, you can quickly add a simple bit of HTML coding to tell the search engine’s crawler that OAMC is an abbreviation for once a month cooking.

OAMC

<abbr title=”Once A Month Cooking”>OAMC</abbr>

Now, the search engine crawler stops by and reads your HTML noting that OAMC is an abbreviation for once a month cooking and indexes it as so. Later when someone searches for “once a month cooking” the search engine will consider your page and the perspective reader can stop by to find out how truly perfect your blog is for them.

What about acronyms though? Well, first, lets rewind back to high school for a short lesson in English. What’s the difference between an abbreviation and an acronym?

An abbreviation is a word shortened by letters and read as so. For example, you would read OAMC as “O”, “A”, “M”, “C”. An acronym, on the other hand, is a word shorted by letters into a readable word or nickname. For example, when frugal bloggers blog about “BOGO” sales, we often read that as “bO-goh” instead of “B”, “O”, “G”, “O”.

So, how do we tell the search engine crawler that BOGO is an acronym for “Buy One, Get One Free”? The HTML is almost the same:

BOGO

<acronym title=”Buy One, Get One Free”>BOGO</acronym>

Now the search engine crawler understands that BOGO is an acronym and when a prospective reader is searching for “Buy One, Get One Deals”, our post will be considered.

So why type this HTML code over and over again, instead of just typing out the entire word? Well, you only have to insert this code once, preferably the first time you use it, into a post to help out the search engine crawler. After that, you can simply type OAMC or BOGO with no added HTML. Plus, it will help expand the search words that will result in your post.

Next, imagine on your once a month cooking blog, you do have a page for new visitors that explains all the definitions of your frequently used acronyms and abbreviations. But, when the search engine crawler stops by, it just reads it as a bunch of text. It doesn’t understand that “Once a Month Cooking” is the definition of “OAMC”. Let’s say when someone searches for “OAMC definition”, you want your site to come up. Here’s the HTML to tell the search engine crawler what it needs to know:

OAMC

<abbr title=”Once A Month Cooking”>OAMC</abbr>

<dl><dt>OAMC</dt>:<dd>OAMC or Once a Month Cooking is setting up a day or two in advance to cook enough meals to last the entire month. Also known as “Freezer Cooking”.</dd></dl>

When a search engine crawler this reads as “Hey, there’s going to be a word with a definition here!”. Then tells the search engine crawler exactly where the word is and exactly where the definition is, so they can index it as so.

While these little tips might not fling you to the top of Google’s search page, it will helps Google index each of your posts properly and help perspective readers find your site a little easier.

With a minor in computers, Beth spends her days as a stay-at-home mom to 3 adorably active children under the age of 5 and blogging about how to cut your grocery budget dramatically at In Good Cents.

{ 1 trackback }

Savvy Blogging Debut: Little Known HTML Codes — In Good Cents
February 24, 2010 at 7:08 pm

{ 13 comments… read them below or add one }

marybeth @ www.babygoodbuys.com February 24, 2010 at 9:14 am
Am I missing something? I’m not able to see the HTML in the examples you gave.

[Reply]

Jessi February 24, 2010 at 9:39 am
Yeah, we’re seeing the final results instead of the actual code we can use ourselves. I’ll check back for an update to see if you list the HTML code itself. Great suggestions. :)

[Reply]

Budgets are the New Black February 24, 2010 at 9:42 am
Yea, I feel like I missed a step, too…

[Reply]

Mommy Snacks Reply:

Hey all, I guess we lost the HTML code when we posted it! I’ll update the post when I hear back from Beth. Sorry!!

[Reply]

Beth @ In Good Cents Reply:

I’m wondering if this will disappear if I paste it here while I work on getting it to appear! Sorry about that :)

ABBREVIATION:
OAMC

ACRONYM:
BOGO

DEFINITION:
OAMC:OAMC or Once a Month Cooking is setting up a day or two in advance to cook enough meals to last the entire month. Also known as “Freezer Cooking”.

[Reply]

Beth @ In Good Cents Reply:

Okay, nope… I’ll e-mail it to you Andrea!

[Reply]

Mercedes Levy February 24, 2010 at 11:04 am
Ok, yeah I am glad to see I am the one wondering exactly what the HTML coding is.

Mercedes

[Reply]

Renae @ Madame Deals February 24, 2010 at 11:56 am
Yes, I can’t see the html either. I think when you typed it out it took it as the html code which is not viewable to us! Thanks for the info though.

[Reply]

Krystyn February 24, 2010 at 12:08 pm
Can’t wait to see the updates…I thought it was just me.

[Reply]

Shellie (Saving with Shellie) February 24, 2010 at 2:29 pm
For those of you (like me!) too impatient to wait on an update, right click on the post and view the page source. You’ll find it in there. It’s:

(abbr title=”Once A Month Cooking”)OAMC(/abbr)

I used () instead of so the code would come through in my comment but when you do it yourself, put an < instead of an ( to make sure it's correct.

[Reply]

Shellie (Saving with Shellie) February 24, 2010 at 2:36 pm
Oh and here’s the acronym code:

(acronym title=”Buy One, Get One Free”)BOGO</acronym)

Remember, use < instead of (. I just used parentheses so you could see it.

I can't really find the third one in the source code so we'll either have to wait for a more techie person to comment or an update

[Reply]

Beth @ In Good Cents Reply:

Thanks Shellie :)

[Reply]

lynn @ Maven of Savin' Reply:

the last one is (blockquote)(p)(em)OAMC or Once a Month Cooking is setting up a day or two in advance to cook enough meals to last the entire month. Also known as “Freezer Cooking”.(/em)(/p)(/blockquote)

I think by announcing it in the line above, then putting the definition in blockquotes will call attention to it.

[Reply]

Mommy Snacks Reply:

Hey all, it’s been updated (I think!!).

[Reply]

Beth @ In Good Cents February 24, 2010 at 3:24 pm
Here’s the third one…

(dl)(dt)OAMC(/dt):(dd)OAMC or Once a Month Cooking is setting up a day or two in advance to cook enough meals to last the entire month. Also known as “Freezer Cooking”.(/dd)(/dl)

Remember to change the ( to .

[Reply]

Sara @ Saving For Someday February 25, 2010 at 1:21 am
Thank you for providing this information. For a new blogger like myself, I so greatly appreciate that you share so freely all these helpful tips. I wouldn’t consider myself a computer geek, but I understand this!

[Reply]

marybeth @ www.babygoodbuys.com March 1, 2010 at 8:52 am
Much better now! Thanks so much!

[Reply]

Lisa @ Drugstore Divas March 25, 2010 at 4:11 pm
I had never heard of this before, and this sounds like such an incredible tip. Thanks so much =]

[Reply]

The Shitzizle April 24, 2010 at 2:51 am
so you’re putting these codes in your posts? is there a way to add META codes to the actual template HTML?

[Reply]

Leave a Comment

Previous post:

Next post: