Newsletter and webmaster resources site   Top 10 Rankings For Your Website!
  Advertise in SiteProNews SiteProNews Archives About SiteProNews SPN Privacy Statement FeedBack SiteProNews Homepage SiteProNews Image Map SEO-News Discussion Forums
  Stretch Your Budget - Advertise in SiteProNews
    QUICK LINKS
 
FEB. 22,  ISSUE #753
Web Search

ExactSeek Links
      Add your Site
      Buy a Top 10 Listing
      Find Your Site Rank
      Schedule a Site Recrawl
      Enhance Your Site Listing
      ExactSeek Member Login

Buy Results, Not Promises - Your Intial Deposit Matched to $100
Top SEO Tools
A key factor in building website traffïc is to use the best tools available. ExactSeek's SEO solution gives you immediate access to 7 effective optimization tools. Get higher ranking on the top global search engines starting today.

Try it Fr-e-e for 90 Days
SEO Tools and Services


SEO-News Forums
Join the SEO-News Forums to post comments, articles and tips or learn from SEO experts.
Forum Posts
Yahoo 118
Google 1298
SE Articles 81
Link Exchanges 256
General Discussion 91
Join the SEO-News Forums
Blog Search
   Add a Blog
   Search 6,600+ Blogs
   Grab a Blog RSS Feed
   Blog Express for RSS Feeds

ExactSeek Toolbar
Get the toolbar with spyware scanning, webpage keyword analysis, web search on multiple meta engines, popup-blocking, Alexa site ranking, word highlighting, auto-upgrade and erase browser cookies.
Download Version 2.3

Webmaster Tools
   Site Ranking Tool
   Meta Tag Generator
   Link Popularity Checker
   Search Engine Submitter
   Internet Tools Directory
   Site Resource Directory
 
Traffïc Exchanges
Get Frëe Traffïc for Your Site with these Traffïc Exchanges:


TrafficZap


TrafficSwarm


Site of the Day
RoboURL.com is a fr'ee shorten your URL service that also provides automatic ad tracking and statistics for any campaign you launch on the fly.

Does your web site qualify as a SPN Site of the Day? Webmaster resource sites can apply via email: sotd@sitepronews.com
 

App of the Day
G-Zapper v1.1 (567 KB) helps you stay anonymous while searching Google. Protects your identity by blocking and/or replacing the Google search cookie. Freeware for Windows 95/ 98/ ME/ NT3/ NT4/ 2k/ XP.

If you have a Webmaster App that you would like listed on the SPN site, send us an email with details to: wapps@sitepronews.com
 

Jayde Newsletters
Subscribe to SiteProNews, the Net's foremost Webmaster ezine or SEO-News, the weekly ezine for do-it-yourself website optimizers. Just enter your email address in the field below and use the Subscribe button.

HTML Newsletter
SiteProNews
SEO-News


Must Read Ebooks
SPN offers one of the best eBook libraries on the Web. Our current selection includes Commercial and over 178 Frëe eBooks.

Authors can submit eBooks to SiteProNews via email: ebooks@sitepronews.com
 

Link to SPN
Link your site to SiteProNews, the newsletter and resource site for Webmasters.

Or, Add SPN to your site with just 2 lines of Java-script code. Top content for your site without any of the work.

Visit our SPN Promotion Partners page. Some great sites have opted to support the SiteProNews newsletter.

SPN Partners
SubmitPlus - Promote your site to 110 search engines... Frëe!

Template Monster - The Web's number one website templates are available for immediate download.

PreWired.com - Providing ISPs & Publishers a Web based revenue stream!

FindMyHost.com... Review detailed Report Cards of web hosts who made the grade.

Web-Source... Your Guide to Professional Web Site Design & Development.

TheCgiSite.com - A directory of programming resources.

SiteUptime.com - A frëe website monitoring service, providing përformance reports and uptime stats.

TechNewsletters.com - A search engine where you can review and subscribe to thousands of IT newsletters.

Frëe Alexa Toolbar
An indispensable tool for web professionals, providing Traffïc Data, Site Stats, and Contact Info for all the sites you visit!.

NewWebDirectory- A new internet web directory of professionally reviewed web sites providing both frëe and paid site submission.

FreeWebMonitoring - Monitor your web site's availability 24 hours a day, 7 days a week with instant email alerts and weekly web site performänce statistics.

 

Submit Plus
Blog Search
FindMyHost
Add Me.com
DesignerWiz
Web Position
Alexa Toolbar
SubmitExpress
Website Builder
$100 Free-Traffic
Fr-e-e SEO Tools
NewWebDirectory
Website Templates
FreeWebMonitoring
FreeWebSubmission



The Three Principles
of HTML Code Optimization

By George Peirson

Just like spring cleaning a house, the html code of your web pages should get periodic cleaning as well. Over time, as changes and updates are made to a web page, the code can become littered with unnecessary clutter, slowing down page load times and hurting the efficiency of your web page. Cluttered html can also seriously impact your search engine ranking.

This is especially true if you are using a WYSIWYG (What You See Is What You Get) web design package such as FrontPage or Dreamweaver. These programs will speed up your web site creation, but they are not that efficient at writing clean html code.

Complete Software Toolkit - Download the Frëe edition plus Bonus Training!

We will be focusing this discussion on the actual html coding, ignoring other programming languages that may be used in a page such as JavaScript. In the code examples I will be using round brackets ( ) instead of correct html angle brackets < > so that the code examples will display properly in this newsletter.

Up until recently when coding a page in HTML we would be using tags such as the (font) tag and (p) paragraph tags. Between these tags would be our page content, text, images and links. Each time a formatting change was made on the page new tags were needed with complete formatting for the new section. More recently we have gained the ability to use Cascading Style Sheets, allowing us to write the formatting once and then refer to that formatting several times within a web page.

In order to speed up page load times we need to have fewer characters on the page when viewed in an html editor. Since we really do not want to remove any of our visible content we need to look to the html code. By cleaning up this code we can remove characters, thereby creating a smaller web page that will load more quickly.

Over time HTML has changed and we now have many different ways to do the same thing. An example would be the code used to show a bold type face. In HTML we have two main choices, the (strong) tag and the (b) tag. As you can see the (strong) tag uses 5 more characters than the (b) tag, and if we consider the closing tags as well we see that using the (strong)(/strong) tag pair uses 10 more characters than the cleaner (b)(/b) tag pair.

Add Dynamic Talking Characters to Your Website!

This is our First Principle of clean HTML code: Use the simplest coding method available.

HTML has the ability of nesting code within other code. For instance we could have a line with three words where the middle word was in bold. This could be accomplished by changing the formatting completely each time the visible formatting changes. Consider this code:

(font face="times")This(/font)

(font face="times")(strong)BOLD(/strong)(/font)

(font face="times")Word(/font) This takes up 90 characters.

This is very poorly written html and is what you occasionally will get when using a WYSIWYG editor. Since the (font) tags are repeating the same information we can simply nest the (strong) tags inside the (font) tags, and better yet use the (b) tag instead of the (strong) tag. This would give us this code (font face="times)This (b)BOLD(/b) Word(/font), taking up only 46 characters.

This is our Second Principle of clean HTML code: Use nested tags when possible. Be aware that WYSIWYG editors will frequently update formatting by adding layer after layer of nested code. So while you are cleaning up the code look for redundant nested code placed there by your WYSIWYG editing program.

Improve Your Organic Search Engine Placement - Frëe Performänce Proposal!

A big problem with using HTML tags is that we need to repeat the tag coding whenever we change the formatting. The advent of CSS allows us a great advantage in clean coding by allowing us to layout the formatting once in a document, then simply refer to it over and over again.

Top 10 Exposure on 160+ Search Engines

The Independent Search Engine & Directory Network paid inclusion program can't be matched by Google, Yahoo! or MSN. We offer:

Flat Fee Rates - Quick Inclusion - World Wide Placement!
Your Keywords - No Bidding - No PPC - Over 150 M Searches/Mo.


Sign Up Today - Receive 2 Bonuses Valued at $60

If we had six paragraphs in a page that switch between two different types of formatting, such as headings in Blue, Bold, Ariel, size 4 and paragraph text in Black, Times, size 2, using tags we would need to list that complete formatting each time we make a change.

(font face="Ariel" color="blue" size="4")(b)Our heading(/b)(/font)

(font face="Times color="black" size="2")Our paragraph(/font)

(font face="Ariel" color="blue" size="4")(b)Our next heading(/b)(/font)

(font face="Times color="black" size="2")Our next paragraph(/font)

We would then repeat this for each heading and paragraph, lots of html code.

With CSS we could create CSS Styles for each formatting type, list the Styles once in the Header of the page, and then simply refer to the Style each time we make a change.

(head)

(style type="text/css")

(!--

.style1 {

font-family: Arial, Helvetica, sans-serif;

font-weight: bold;

font-size: 24px;

}

.style2 {

font-family: "Times New Roman", Times, serif;

font-size: 12px;

}

--)

(/style)

(/head)

(body)

(p class="style1")Heading(/p)

(p class="style2")Paragraph Text(/p)

(/body)

Notice that the Styles are created in the Head section of the page and then simply referenced in the Body section. As we add more formatting we would simply continue to refer to the previously created Styles.

This is our Third Principle of Clean HTML Code: Use CSS styles whenever possible. CSS has several other benefits, such as being able to place the CSS styles in an external file, thereby reducing the page size even more, and the ability to quickly update formatting site-wide by simply updating the external CSS Style file.

So with some simple cleaning of your HTML code you can easily reduce the file size and make a fast loading, lean and mean web page.


About The Author
George Peirson is a successful Entrepreneur and Internet Trainer. He is the author of over 30 multimedia based tutorial training titles covering such topics as Photoshop, Flash and Dreamweaver. To see his training sets visit http://www.howtogurus.com. Article copyright 2005 George Peirson


Printer Friendly Version of this Article


Recommended Articles and News for Webmasters

SEO To Become A Dinner Party Topic
Why Your Website Needs Inbound Links
Google.cn: The Internet As Beijing Sees It
Marketing Power of RSS Content Syndication
The Dark Side Of Google - A Reason For Concern?
Content Layering: Using Site Architecture To Improve SEO

Need Content for Your Website - GoArticles.com has 121,000+ Articles
Add a RSS feed or Javascrïpt feed in seconds.


Webmaster Resource Sites & Services

Search Engine Tools - The only way to increase your Web site's position and ranking on search engines is to use the optimal tools. The ExactSeek SEO Solution is F-R-E-E for 90 days!

Add Me! - a pioneer in search engine submission, and the most popular. They offer frëe submission and paid submission.

Google Ranking Secrets Revealed! Boost Your Google Ranking,
Get More Orders, And Make More Monëy!


Build Your Traff'ic with ABCSearch
Get $100 of FR-E-E qualified Visitors. Sign-up today and we'll match any initial deposit up to $100. Geo-targeting, full reporting and one-click results!

Recommended Webmaster Tools & Services

Humans Learn Better by Watching.
Come watch my friend Jim Daniels build a web business from the ground up. Innovative, new "View it and Do it" Software lets you build your business right along with this 10-year web business expert. Simple, fun, amazingly effective.

Select from 1000's of Quality Templates
Need a new site look? Select from thousands of professional designs for a fraction of web design costs. Get a multi-page website up in just a few hours.

Build a Business Website in Under 5 Minutes.
Over 172,000 people just like you have used Exact Websites to build professional websites, complete with web pages, photo albums, email, links and 27 other features without ever having built a website before.

WebPosition
WebPosition helps you maximize your site's search engine visibility by providing a complete SEO solution including rank reporting, keyword research, page optimization and submission. Download a frëe demo today!

Have an Opinion on Today's Article?
Post Your Comments in the SEO-News Forums
Sign Up for FR-E-E and Participate

 

  SiteProNews - The Net's most widely read Webmaster newsletter


(c) Copyright 2006 All rights reserved. Jayde Online, Inc.
Web design by
ControlV.