rankpageone.com SEO Search Engine Optimization

Fast SEO Ranking and Fast Web Design

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Fast Web Design, Fast SEO Ranking, Fast Logo Design, search engine ranking, SEO ranking, search engine optimization, search engine ranking, top search engine ranking, top 10 search engine ranking, better search engine ranking, top ten search engine ranking, search engine ranking company, increase search engine ranking, high search engine ranking, improve search engine ranking, search engine top ranking service, guaranteed top search engine ranking, more search engine ranking, search engine ranking service, higher search engine ranking, guaranteed search engine top ranking service, improved search engine ranking, high search engine ranking optimization, top 20 search engine ranking, search engine ranking optimization, search engine ranking report, search engine ranking services, guaranteed top 10 search engine ranking, top search engine ranking tool, guaranteed search engine ranking service, guaranteed guaranteed top search engine ranking, guaranteed top ten search engine ranking, search engine submition with high ranking, top search engine ranking web site design, guaranteed top 20 search engine ranking, google search engine ranking, high search engine ranking positioning, affordable search engine ranking, yahoo search engine ranking, msn search engine ranking, top google search engine ranking, top yahoo search engine ranking, top msn search engine ranking, guaranteed search engine ranking, free search engine ranking, search engine ranking tip, search engine ranking improvement, high ranking in search engine, search engine ranking software

Fast Web Design, Fast SEO Ranking, Fast Logo Design

Optimizing Your Web Site for the Search Engines Using CSS and Javascript

Michael L. White Copyright © 2003-2004 All Rights Reserved.


Two of the greatest techniques to come along for web site
refinement are cascading style sheets (CSS) and javascript
navigational menus. In this article, I want to show you how to
use both of these to ease the strain of site maintenance while
defending against at least two problems with using javascript
menus.

CSS can make web site maintenance much easier by consolidating a
site's style and appearance attributes into one central file
which can be edited alone and yet affect the look of the entire
site. Just as wonderful, one javascript file can accomplish a
similar effect with your site's navigational menu by making it
available to every page on your site through a single line of
code per page linking that page to the javascript file. By
removing all this CSS style and javascript code into two
separate files, you will clean up your web pages' textual
content, thus making it easier for search engine spiders to
crawl and index your site and more effectively rank it according
to your actual textual content. These are definitely two
techniques worth implementing.

Here are the examples to show you how this is done. First,
here's how your web page incorporating both the CSS and the
navigational menu javascript file should look:

<HTML>

<HEAD>

<TITLE>Your Page Name</TITLE>

<LINK TYPE="text/css" MEDIA="Screen" REL="stylesheet"
HREF="http://www.yourdomain.com/your_css_file.css">

</HEAD>

<BODY>

<DIV ID="center">

<H1>Your Page Name</H1>

Your page's textual content goes here....
</DIV>

<DIV ID="left">

Your navigational menu is inserted here from your javascript
file using the following line of code. See the next example for
sample code for the navigational menu javascript file.

<SCRIPT LANGUAGE="javascript" TYPE="text/javascript"
SRC="http://www.yourdomain.com/your_nav_menu_file.js">
</SCRIPT>

</DIV>

</BODY>

</HTML>




Now, here's how your navigational menu javascript file should
look:


<!--
document.write('<a
href="http://www.yourdomain.com/your_web_file1.html">Page
One</a>'); <BR>

document.write('<a
href="http://www.yourdomain.com/your_web_file2.html">Page
Two</a>'); <BR>
-->

You can add as many menu items as you need, so you get the
picture.




Finally, here's the part of the code in your CSS file which
gives your site the table-like look without the
high-maintenance, cluttered effect of the HTML TABLE code:




...other CSS code, such as font style, etc., can precede the
following segment.


The #left and #center blocks of code below correspond to the
left and center columns on your web page. You can also add a
#right and #top column and section, respectively, if you so
desire.



#left

{ position: absolute;

top: 0px;

left: 0px;

width: 220px;

padding: 10px;

margin: 5px;

background-color: #f2f2f2;

}



#center

{ top: 0px;

margin-left: 230px;

padding: 10px;

}


Hopefully, those examples give you a fairly good idea of the
benefit of using these two powerful practices. For more about
using CSS, I can recommend downloading the sample chapters
from Dan Shafer's book, HTML Utopia: Designing Without Tables
Using CSS
, at SitePoint.com.



Besides these two optimization techniques, however, we're also
hearing about all kinds of ways to optimize our web sites for
the search engines these days. The competition for those
coveted top placements is fierce, for sure. We've heard all
about how important it is to have good, pertinent content in the
textual portion of our pages, how effective it can be to include
our site's keywords within the alternate attributes (i.e,
ALT="keyword") of our image tags, and how valuable a link
to/from a high traffic, like-minded web site can be. All this
is certainly true and well worth the effort to make our web
pages rank higher in the search engines, but with all this
improvement to web site maintenance, what is the downside?
Well, take note, so you can say you saw it here first.



I've detected two pesky problems in this web page wonderland.
One is the absence of navigational links for search engine
spiders to follow, and the other is the possibility of
javascript-disabled web browsers. That's right; as fabulous as
it is to store our navigational menu in one javascript file for
easier updating, it removes all the key links from our start
page so the search engine spiders have no other pages left to
index on our site, and javascript-disabled web browsers can't
see a menu at all! What's a webmaster to do? Well, here's how
I decided to handle it.



I put my navigational menu with its various links to all my
site's other pages on two key pages: the start page and the site
map page. This way, when the search engine spiders come
calling, they can follow every link from my navigational menu to
every other page on my site, and, at least, javascript-disabled
web browsers will still have a menu to follow. The same is true
of my site map page. For all the rest of my pages, however, I
decided to leave intact the line of code calling the javascript
file containing my navigational menu in order to take advantage
of its centralization benefits. The more pages I add to my site
over time, the more beneficial this approach will be, too. I
see it as having the best of both worlds: easy site maintenance
and search engine optimization.

So, if you want to lighten your web site maintenance load while
keeping your site optimized for the search engines, I recommend
using CSS to consolidate your site's style attributes, to
include a tableless, yet table-like, appearance and the
centralization of a single javascript file containing your
navigational menu. Just don't remove your navigational links
from your start and site map pages.

You can visit either of my two web sites at

http://webmarketersguide.com
or

http://www.parsonplace.com

to see how I've done this. You're welcome to email me anytime at info@parsonplace.com with any questions or comments.

About the Author

Michael L. White is an Internet entrepreneur who currently manages two web sites: The Web Marketer's Guide http://webmarketersguide.com, which provides resources for Internet entrepreneurs to create, market, and manage a small business on the Internet, and Parson Place http://www.parsonplace.com, which has a more personal bent. Both have
subscription-only newsletters to keep you well abreast of news and information.

 

 

More News on SEO - Search Engine Optimization

From SEO - Search Engine Optimization newspaper: Well, we're here to meet with you today about your company, rankpageone.com and the SEO - Search Engine Optimization work you do.

From rankpageone.com: Well, we can defiantly promise high quality SEO - Search Engine Optimization work, and that SEO - Search Engine Optimization is our specialty. We could also promise a good experience with us as all of our SEO - Search Engine Optimization employees are helpful, polite and hard workers. We offer only the best in SEO - Search Engine Optimization.

From SEO - Search Engine Optimization newspaper: Well, to start off with, you promise very satisfactory SEO - Search Engine Optimization work from rankpageone.com don't you?  Contact our firm rankpageone.com by calling 210-493-6193.

 

Fast SEO Ranking News Continued

For Organization rankpageone.com to achieve its future state of being the dominant professional services firm in North America, we need the people who can best serve our clients. This will be a diverse group of people who are selected, developed, and treated on the basis of merit and fairness. Fast SEO Ranking technology is a basic skill that will help advance our client's position.  Contact our firm rankpageone.com by calling 210-493-6193.

 

 

 

                  Phone 210-493-6193

© 1998-2006 rankpageone.com, a division of Advent Digital Fast Web Design by Advent Digital