How To Design Your Web Site With CSS

Written by Herman Drost


Continued from page 1

4. Improve search engine rankings – search engines generally spiderrepparttar code atrepparttar 132336 top of your web page first. For most sites that meansrepparttar 132337 navigation bar will be spidered first (resides at top of page code). CSS enables you to positionrepparttar 132338 code for your content atrepparttar 132339 top making your page search engine friendly. Properly marked up HTML pages can easily found and properly categorized by search engines

5. Fast loading – CSS reducesrepparttar 132340 amount of tags used therefore producing clean code. Tableless design can reduce your load time by 25% to 50%.

6. Reduce bandwidth – compactingrepparttar 132341 amount of code used will reducerepparttar 132342 amount of bandwidth needed to host your web pages. Therefore you won’t have to pay higher fees when adding more web documents to your site.

7. Accessibility - increasing accessibility with CSS means being able to serve web content to a larger audience, increasing web site usability, even for non-disabled people. Content can easily be formatted for projection as well as screen display. Tableless layouts display well on hand-helds.

8. Improverepparttar 132343 printing of web pages – most printers will only allow you to print a portion ofrepparttar 132344 web page. With CSS your whole document can be printed.

When you use CSS it becomes quick and easy to apply new styles that can not only effect all styles on your web page but even your whole site.

Inrepparttar 132345 next article I will explain how to layout a web page using CSS.

Herman Drost is the Certified Internet Webmaster (CIW) owner and author of http://www.iSiteBuild.com. Affordable Web Site Design and Web Hosting. Subscribe to his “Marketing Tips” newsletter for more original articles. mailto:subscribe@isitebuild.com. You can read more of his in-depth articles at: http://www.isitebuild.com/articles


How to Build a Basic CSS Layout

Written by Herman Drost


Continued from page 1

3. Createrepparttar side navigation menu - to buildrepparttar 132335 left side navigation I userepparttar 132336 normal CSS code forrepparttar 132337 different links ie

a:link {

text-decoration: none;

}

a:visited {

text-decoration: none;

}

a:hover {

text-decoration: underline;

color: #FF0000;

}

a:active {

text-decoration: none;

}

If links are placed elsewhere onrepparttar 132338 page they will inheritrepparttar 132339 same properties as above..a blue link that hovers to red. What if you wish to create another set of links that are a different color and on passing your mouse over them they are underlined.

4. Createrepparttar 132340 bottom navigation - to include this inrepparttar 132341

    <Back to Page 1
 
ImproveHomeLife.com © 2005
Terms of Use