Cascading Style Sheets for Better Web Design | ||||||||
|
In cascading style sheets you can specify how your web pages will be presented on the screen by simply predefining page elements such as fonts, headers and links. You can add these predefined elements in the head-section of your pages, but more interesting is to use them in a single .css file and include that file in every page on your site. All you have to do is include <link href="style.css" rel="stylesheet" type="text/css"> in your HTML header. (the path in the href must point to the place where your .css file is stored) There are two main benefits to using css sheets in a separate file: 1. more flexibility; only one (1) file to update 2. less HTML coding and easy replacement of deprecated HTML. I'll explain more of this below. First, let me tell you I am NOT a cascading style sheet professional. I just use it. If you want to become one, there are great css resources and tutorials out there. Just go to http://www.w3.org/Style/CSS/learning http://www.htmlhelp.com/reference/css/ to mention a few, but there are many more. Type 'cascading style sheets' in your favorite search engine and you get plenty of information. But just being a layperson in css emphasizes the importance of this web design tool. I started using cascading style sheets in its most elementary form. All you have to do is name the page element that you are going to specify and add its specifications in curly brackets. Here's my first css file: body { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; line-height: normal; font-weight: normal; text-decoration: none; color: #000000 } By simply saving this code in a style sheet file and including it in my webpages I suddenly didn't have to define FONT statements in the body of my pages any more. Webmasters/Publishers You are invited to use any of my articles as free content for your site or publications, providing you do not alter them without consulting me first, and you include the following resource box at the bottom of the article.
| ||||||||
If you stumbled upon this page by accident, and you like what you're reading here, then consider signing up for my newsletter called Affordable Online Strategies. If you sign up now you'll end your guesswork and confusion! Finally your immense concern of building online income has become ridiculously simple ... just click the link above.
| ||||||||
|
Privacy Policy - Terms of Use / Disclaimer Copyright © 2007 AnOwnSite. All rights reserved. Postbus 132, 5100 AC Dongen, Netherlands AnOwnSite Related sites: squidoo internet marketing rants - Internet Marketing Strategies - Inner Circle member Case Stevens Internet Marketing Strategies by An Own Site: Affordable Online Strategies using Tested Marketing Techniques |