The 4 Best META Tags for Homepages - HTML Weapons - Lakeside Park

META Tags



General META Tag Info

Place the <META> tags in the <HEAD>...</HEAD> section of the document.  For example:
<HEAD>
<!-- Website Design copyright 1999 by Lord of the Gourd -->
<TITLE>Some Guy's Page</TITLE>
<META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW, NOIMAGECLICK">
<META HTTP-EQUIV="WINDOW-TARGET" CONTENT="_TOP">
<SCRIPT LANGUAGE="JAVASCRIPT">
<!-- Lord of the Gourd, 1999
alert("Welcome to Some Guy's Page!")
// -->
</SCRIPT>
</HEAD>
Also, <META> tags are not case-sensitive.  The following works just as well:
<head>
<!-- Website Design copyright 1999 by Lord of the Gourd -->
<title>Some Guy's Page</title>
<meta name="robots" content="noindex, follow, noimageclick">
<meta http-equiv="window-target" content="_top">
<script language="javascript">
<!-- Lord of the Gourd, 1999
alert("Welcome to Some Guy's Page!")
// -->
</script>
</head>
That's the end of the General section.

Top

<META HTTP-EQUIV="Window-target" CONTENT="_top">

This will cause Netscape and Internet Explorer to break out of any frames someone tries to load your page in.

Top


<META NAME="ROBOTS" CONTENT=.... >

Contains directions for search engines. Not all search engines obey them, though.... some still only pay attention to the standard protocols (more on that.  For right now, let me just say that if you have a webpage on GeoCities, Tripod, Angelfire, Xoom, etc., these protocols will not apply to you.)

Possible values for the CONTENT= attribute:

Separate multiple attributes with commas. For instance:

<META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW"> : Index a page, but do not follow the links.
<META NAME="ROBOTS" CONTENT="NOINDEX, NOIMAGEINDEX"> : Don't index the page or the images.
<META NAME="ROBOTS" CONTENT="FOLLOW, NOFOLLOW"> : Nobody knows what'll happen.
<META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW, NOIMAGECLICK"> : Don't index the page, follow the links, and don't link directly to the images.

Top
 
 

<META NAME="KEYWORDS" CONTENT=....>

Tells what keywords to use when your page is indexed.  Commas separate keywords; if there is only a space, it is usually treated as an exact phrase.

Examples:

<META NAME="KEYWORDS" CONTENT="poetry, poem, lakeside park, sapphire cat, thesapphirecat, truth distillery, dreamtree, quote, unicorn prarie">
<META NAME="KEYWORDS" CONTENT="steve miller, fly like an eagle, space cowboy, joker">

Don't try to make your page score higher by listing the same keyword several times.... search engines will discard or severely penalize it.  Stay away from tags that look like this:

<META NAME="Keywords" CONTENT="unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns, unicorns">

But this is fine:

<META NAME="keywords" CONTENT="Weird Al, Wierd Al, Yankovic, Yancovic, Yancovik, Yankovik">

Each time, Weird or Yankovic was spelled differently.  (For those of you who can't spell, I put the correctly spelled one first.)

Top


<META NAME="DESCRIPTION" CONTENT=....>

Contains directions for search engines. Tells what to display as the description of the page.  Keep it short!  About 200 characters is the normal maximum.

Examples:

<META NAME="DESCRIPTION" CONTENT="This is Lakeside Park, home of The Sapphire Cat. Here you'll find poetry, my truth distillery, the Dreamtree, quotes, the Unicorn Prarie, and anything else I've added since I wrote this description. :-)">
<META NAME="DESCRIPTION" CONTENT="The ultimate source for the Steve Miller band! MIDI - MP3 - IMAGES - HISTORY - LINKS">

Top


MORE

If you really want to know everything about META tags, drop by Dr. Clue's.

If you have a real domain name from somebody, like http://you.somewhere.net/ or http://thesapphirecat.freeservers.com/, you can specify where robots look in your site by including a "/robots.txt" file (which could be accessed something like http://you.somewhere.net/robots.txt.) Sorry, it has to go there----that's why it doesn't work on GeoCities. You can't upload a file to www.geocities.com/robots.txt. You can only upload it to www.geocities.com/labyrinth/maze/6502/robots.txt, and the search engines won't look there.
NOTE:  Once you upload a robots.txt, be sure to look at it!  Here in Freeservers (for the moment, at least), anything that's not HTML is considered "binary" (even if it is a .txt) and returns a "Forbidden" error unless it was traveled to through a Freeservers web page.  The "Forbidden" error will cause search engines to assume nothing on the site should be indexed.  On the other hand, without the robots.txt file, the "Not Found" error will cause the robot to assume nothing is forbidden and index it.

Anyway, a file that tells more than you ever wanted to know about the robots.txt file is available here. Or read the FAQ.

Top


Back

Parts of this site are copyrighted as described in the legal notice.