Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Break the <FONT ...> Habit: External Style Sheets

In the first example we set the styles rules inside a <STYLE ...> tag which was inside the <HEAD> section. That allows us to set a rules for the entire page. However, for even a small web site it gets tiring setting rules for every page. For that reason styles allow you to create a set of rules in a separate file and then load those into each page. External style sheets allow you to set all the rules for the entire site in one place, giving your site a consistent look across all the pages.

For example, create a text file called mystyles.css. Type this styles code into the file. Notice that this code does not have the <STYLE ...> tag in it:

H2
   {
   color:red;
   font-weight:900;
   font-family:sans-serif;
   }

These styles can be loaded into a web page with a <LINK ...> tag. In <LINK ...> set REL to STYLESHEET and HREF to the name of the file that has the styles rules (in this case mystyles.css). Set TYPE to TYPE="text/css" to indicate that we are loading a CSS stylesheet.

<LINK REL=STYLESHEET HREF="mystyles.css" TYPE="text/css">

When the browser sees the <LINK ...> tag it will download the file and apply the styles to the page. So in our example an <H2 ...> element gets the styles:

<H2>Great Gift Ideas</H2>

which gives us

Great Gift Ideas

 
 
  Copyright 1997-2002 Idocs inc. Published under the terms of the Open Content License Design by Interspire