Posts Tagged ‘Tag’

can I add a robots follow meta tag to my own pages?

Saturday, September 20th, 2008

My chiropractor said that I should add a  robots follow  tag on all the pages of our site in order for it to be spidered deeply by the search engines. She also said that I should put the “revisit after” tag on as well, to let the bots know how often they should stop by. What do you think..

The revisit after tag is not necessary, nor is it helpful. The search engine spiders work on their own timetable, and couldn’t care less what your revisit tag says. I’ve heard that the tag was actually created for one specific search engine a long time ago, but I’ve never bothered to confirm it. At any rate, there’s no need to clutter up your code with it as today’s engines ignore it.

Creating a Stationary HTML Web Page Background

Monday, July 14th, 2008

You can create a stationary HTML web page background within your web page.

Stationary background images remain in one place even when scrolling through the page. Only the text will move. To create this effect, place the following code within your <BODY> tag.

<body background =”yourimage.gif” bgproperties=”fixed”>

When selecting your background image, keep in mind that your text will be moving over your image, so try to select an image that won’t make your text difficult to read.

To prevent your background image from tiling (repeating), place the following code between your <HEAD> and </HEAD> tags.

<STYLE TYPE=”text/css”>
<!–
BODY { background-image: url(yourimage.jpg) }
BODY { background-repeat: no-repeat }
BODY { background-position: center }
–>
</STYLE>

Replace the text indicated in red with your image file.

Enlarging Text Size within a Web Page

Sunday, July 13th, 2008

Although you can enlarge web page  text with the FONT tag, you also use the BIG tag.

The BIG tag is used to increase the size of your font. You can add additional BIG tags, side by side, to increase your font size even further. For each additional BIG tag you use, your font size will increase.

HTML Code:

<BIG>Your Text</BIG>

Browser View:

Your Text

HTML Code:

<BIG><BIG>Your Text</BIG></BIG>

Browser View:

Your Text

The BIG tag can be used in place of the FONT tag, as they both perform the same task.

Example Font Tag:

<FONT size=”3″>

SEO:Your Search Engine Optimization Plan

Monday, June 30th, 2008

A complete guide to search engine optimization would be book-length, and would be out of date as soon as it was published, but here are several tips for building a website with search engine optimization in mind:

1. Every page on your site must have a unique title tag, meta keywords tag, and meta description tag.

2. Follow W3C recommendations for HTML document structure. Begin the body copy of your page with your keyword phrase, and repeat it as needed as the theme of the page throughout your copy. Feature your keyword phrase prominently by including it in headers and making it bold or italics.

3. Use text navigation on your site, and use the keyword phrases you have selected as the links. If you cannot use text navigation, include a footer on every page using text links.

4. Build a text site map, and link to it from every page of your site.

5. Organize your navigation according to the importance of your keyword phrases. If you break your site into many pages, link to the most important pages from every page of your site, and link to the other pages from section header pages and the site map.

6. Establish your site by submitting to the major directories, The Open Directory and the Yahoo! Directory, then build your link popularity by submitting to web directories, search engines, and requesting links from related websites.

7. Be patient. A search engine optimization project can take quite some time to work.

For Google’s suggestions on search engine optimization, see Google Information for Webmasters - Webmaster Guidelines.

SEO:Information On Meta Tags

Monday, June 30th, 2008

Some search engines are now indexing Web documents by the meta tags in the documents’ HTML (at the beginning of the document in the so-called “head” tag). What this means is that the Web page author can have some influence over which keywords are used to index the document, and even in the description of the document that appears when it comes up as a search engine hit.

This is obviously very important if you are trying to draw people to your website based on how your site ranks in search engines hit lists.

There is no perfect way to ensure that you’ll receive a high ranking.  Even if you do get a great ranking, there’s no assurance that you’ll keep it for long.  For example, at one period a page from the Spider’s Apprentice was the number- one-ranked result on Altavista for the phrase “how search engines work.”   A few months later, however, it had dropped lower in the listings.

There is a lot of conflicting information out there on meta-tagging.  If you’re confused it may be because different search engines look at meta tags in different ways.  Some rely heavily on meta tags, others don’t use them at all.  The general opinion seems to be that meta tags are less useful than they were a few years ago, largely because of the high rate of spamdexing (web authors using false and misleading keywords in the meta tags).

Note:  Google, currently the most popular search engine, does not index the keyword metatags.  Be aware of this is you are optimizing your webpages for the Google engine.

It seems to be generally agreed that the “title” and the “description” meta tags are important to write effectively, since several major search engines use them in their indices.   Use relevant keywords in your title, and vary the titles on the different pages that make up your website, in order to target as many keywords as possible.  As for the “description” meta tag, some search engines will use it as their short summary of your url, so make sure your description is one that will entice surfers to your site.

Note:  The “description” meta tag is generally held to be the most valuable, and the most likely to be indexed, so pay special attention to this one.

In the keyword tag, list a few synonyms for keywords, or foreign translations of keywords (if you anticipate traffic from foreign surfers).  Make sure the keywords refer to, or are directly related to, the subject or material on the page.  Do NOT use false or misleading keywords in an attempt to gain a higher ranking for your pages.

The “keyword” meta tag has been abused by some webmasters.  For example, a recent ploy has been to put such words “sex” or “mp3″ into keyword meta tags, in hopes of luring searchers to one’s website by using popular keywords.

The search engines are aware of such deceptive tactics, and have devised various methods to circumvent them, so be careful.  Use keywords that are appropriate to your subject, and make sure they appear in the top paragraphs of actual text on your webpage.  Many search engine algorithms score the words that appear towards the top of your document more highly than the words that appear towards the bottom.  Words that appear in HTML header tags (H1, H2, H3, etc) are also given more weight by some search engines.  It sometimes helps to give your page a file name that makes use of one of your prime keywords, and to include keywords in the “alt” image tags.

One thing you should not do is use some other company’s trademarks in your meta tags.  Some website owners have been sued for  trademark violations because they’ve used other company names in the meta tags.  I have, in fact, testified as an expert witness in such cases.  You do not want the expense of being sued!

Remember that all the major search engines have slightly different policies.  If you’re designing a website and meta-tagging your documents, we recommend that you take the time to check out what the major search engines say in their help files about how they each use meta tags.  You might want to optimize your meta tags for the search engines you believe are sending the most traffic to your site.

Getting results from a select multiple HTML tag.

Saturday, June 28th, 2008

The select multiple tag in an HTML construct allows users to select multiple items from a list. These items are then passed to the action c for the form. The problem is that they are all passed with the same widget name. I.e.
<select name=”var” multiple=”yes”>
Each selected option will arrive at the action handler as var=option1, var=option2, var=option3. Each option will overwrite the contents of the previous $var variable. The solution is to use PHP’s “array from form element” feature. The following should be used:
<select name=”var[]” multiple=”yes”>
Now first item becomes $var[0], the next $var[1], etc.

SEO : Optimize Your META Tags

Thursday, June 26th, 2008

META tags are hidden code read only by search engine webcrawlers (also called spiders). They live within the HEAD section of a web page. There are actually 4 very important META tags you need to worry about. Meta tags specifying who the author is and what the site is about really isn’t important to the search engines that matter the most (i.e.: Google). The META tags you need to be the most concerned about are:

1. robots
2. content-type
3. description
4. keywords

Sequencing of these tags may be extremely important. I say “may” because SEO is mostly hypothesis due to the changing algorithms of the search engines. Even though the W3C states that tag attributes do not have to be in any particular sequence, I’ve noticed a significant difference when I have the tags and attributes in the order described here. The only deviation from the list above is that the Title tag should come after content-type and before description.

The robots META tag tells the various search engine spiders whether or not you’d like them to crawl through your web page as well as where to start in their crawling activity. Top 10 SEO Tips wouldn’t be worthless without META robots, so long as you use a Robots.txt file. It’s not too hard to see why this tag can still be important. Here is the syntax:

<meta name=”robots” content=”index, follow” />

You can change the “index” to “noindex” and the “follow” to “nofollow” if you do not want your website to be indexed. Though, I have no idea why you wouldn’t want to be indexed.

Content-type is important to complex search engines like Google. This tag tells the spider what type of page you are posting, which helps the search engine categorize the listing. It also shows that you are following the World Wide Web Consortium (W3C) guidelines, which could be an indication of a site being “optimized”. Here is the syntax used on this page:

<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ />

The description META tag is the text that will be displayed under your title on the results page. See the OC Internet Advertising example above. There’s also a lot of controversy about the number of characters you should have in this tag. I’ve seen sites with a paragraph in their description listed in the top results, so I don’t think this tag has very much weight.

Tag Your Content

Thursday, June 19th, 2008

Technorati is the first place that you should be tagging posts. I actually recommend having the tags right on your page, pointing to the Technorati searches that you’re targeting. There are other good places to ping - del.icio.us and Flickr being the two most obvious (the only other one is Blogmarks, which is much smaller). Tagging content can also be valuable to help give you a “bump” towards getting traffic from big sites like Reddit, Digg & StumbleUpon (which requires that you download the toolbar, but trust me - it’s worth it). You DO NOT want to submit every post to these sites, but that one out of twenty (see tactic #18) is worth your while.