|
|
Optimizing Pages with JavaScript and Style Sheets for Search Engines
BackgroundSearch Engines use a number of criteria to decide what a given web page is all about. These criteria, which can be different from Search Engine to Search Engine, and which may even change over time, all aim at deciding how "relevant" a page is to a given users search. The Search Engine wants to return the results most relevant to a users search.While the particulars may change over time, there are some criteria which remain constant. One of these is where the keywords are located on the page. Typically words that are located closer to the beginning of a page are considered more important than words that occur further down the page. This stands to reason: think of a newspaper article, where the headline and the first paragraph usually have more "meat" than the rest of the story.Another measure of relevance is "keyword density". This is roughly the ratio of keywords on a page to the total number of words on a page. Having a higher ratio of keywords to total words will make a page more relevant for a search on those keywords.When a Search Engine sends its robot out to look at your page, you want to make sure that it finds important information near the top of the web page, and that the page has a high keyword density. Sometimes there are complications, even when you have a lot of keyword-rich text early in the visible portion of your page. Two of these complications, extensive JavaScript code and extensive Cascading Style Sheet code, can be easily remedied.JavaScript problemLarge amounts of JavaScript code can get in the way. Typically the largest amount of JavaScript code in a web page is found in the HEAD section. This is usually where variables and functions are defined, and so forth. Unfortunately, having a large amount of JavaScript code in a page can be detrimental to a pages ranking in the Search Engines.Since Search Engines tend to pay more attention to text at the beginning of a web page than they do to text further from the beginning, it stands to reason that if you have several dozen lines of JavaScript code at the top of the page, your real content is going to be further from the beginning of the page. Further down the page means less important to the Search Engine.Keyword density is also important. Here again, if you have several hundred words of JavaScript code in a page, the keyword densitythe ratio of your keywords to all the words in the whole page, both text and codeis going to be much lower. That means that some Search Engines will decide that your page is less relevant.JavaScript solutionSo how do you maintain JavaScript functionality, but make your page as Search Engine-friendly as possible? You put the JavaScript code into a separate file, and link it back to the web page.The original page, "mypage.html", may look something like this.My Title function helloWorld(){ alert("Hello, World!"); return; } ...body of page...Example 1mypage.html with JavaScript codeWe replace the JavaScript code with an instruction for the browser to go and grab the code from a separate file. The new page will look like this.My Title ...body of page...Example 2mypage.html with JavaScript code offloadedNote the addition of the "src" attribute to the SCRIPT tag. The value assigned to that attribute is the name of the external file that contains the JavaScript code. Typically, these external files will be given the filename extension ".js" to indicate that they contain JavaScript code. Note also that there are both and tags here, even though there is nothing between those tags.A new page is then created that holds the code that was formerly held in the SCRIPT tags. We will call it "codepage.js", and it looks like this.function helloWorld(){ alert("Hello, World!"); return;}Example 3codepage.js includes only JavaScript codeThis new file doesnt need any kind of HTML markup. It contains only the code that was originally held between the SCRIPT tags.Style Sheet problemIn addition to JavaScript code, Style Sheet code can cause complications for Search Engines when it is put into a web page. For the same reasons as JavaScriptmoving the important content further down the page, and diluting the keyword densityit is important to move Style Sheet code off of the page as well. Style Sheet solutionThe thought behind removing Style Sheet information from a page is very similar to that of offloading JavaScript; the syntax to do so is different.The original page, "mypage.html", may look something like this.My Title body{ background:white; color:red; } ...body of page...Example 4mypage.html with style sheet codeWe want to move this code into a separate file, so we remove it from the original page, and add a link to point to the separate file that now holds the Style Sheet code.My Title ...body of page...Example 5mypage.html with Style Sheet code offloadedNote the addition of the LINK tag. This contains three types of information that the browser will need to reconstruct the page when a visitor looks at it. The "rel=stylesheet" attribute/value pair indicates that we are looking at a Style Sheet file here. The "href=style.css" attribute/value pair points to the external file that contains the Style Sheet information. Typically these external files will be given the filename extension ".css" to indicate that they contain Cascading Style Sheet code. You will replace the filename "style.css" with the name of the actual file into which you place your stylesheet code. Finally, we have to specify the MIME type of the file, in the "type=text/css" attribute/value pair.A new page is then created that holds the code that was formerly held in the STYLE tags. We will call it "style.css", and it looks like this.body{background:white;color:red;}Example 6style.css includes only Style Sheet codeThis new file doesnt need any kind of HTML markup. It contains only the code that was originally held between the STYLE tags.ConclusionBy following these two procedures, you have now made your web page more friendly to the Search Engines. This means that the next time your page is spidered by the Search Engine robots, the important content on your page will be closer to the top of the page, and you will have a better keyword density. This will result in your page appearing higher in the Search Engine listings, and will probably bring more traffic to your website. When you are ready to put your website to work for you, its time to contact us.Search InnovationYour Search is Overhttp://www.searchinnovation.cominfo@searchinnovation.comCopyright 2002 Search Innovation. All Rights Reserved. About the Author Dale Goetsch is a Search Engine Marketing Consultant for Search Innovation, a Search Engine Marketing company serving small businesses. His background includes over twelve years as a software tester, as well as Perl, JavaScript and ASP programming.
|
|
Web Development |
Most Popular Articles |
|
|
|
Random Article 1 |
Random Article 2 |
- Turning Poor Quality Traffic Of Your Site Into Sweet Profits?
by: Zoltan Csesznik The answer is YES, thanks to TrafficCleaner.com! In this article I will shortly describe my own experience about how I now generate income through the normally useless and inevitable percentage of poor traffic getting on my website. This is new and amazing and
|
- Color Psychology in Marketing
by: Al Martinovic On the internet we dont deal with face to face selling. The internet is a visual and psychological medium. The words, or sales copy, on your website have by far the greatest psychological impact on your visitors and thus becomes your most important communication and
|
Random Article 3 |
Random Article 4 |
- How Does Your Website Make Me Feel?
by: Philippa Gamse, CMC When people think about the Internet, they think about technology. When people hear that I am a Website strategy expert, they see me as a "techy type". But for me, the most intriguing aspect of your online business isnt about the technology. Its about human
|
- Website Promotion Internet Marketing Will Keep You On Top
Website promotion Internet marketing is perhaps the most important part of your Internet sales strategy. Without creativity, your website can get lost among the thousands of options awaiting surfers online. The first step in defining your website promotion Internet marketing plan is to set reachable
|
|