This page uses a linked style sheet

This is an example of a link modified by a style sheet.

In a page that uses a linked style sheet, we create two files. One file contains your HTML code. The other contains your style sheet code, a .css file. To use the .css style sheet file, you put the following tag in your <HEAD> area.
<link rel="stylesheet" href="my_linked_style_sheet_file_goes_here.css" type="text/css">

And in your .css file, you can put all your CSS code. For example, this page uses:
body {
 background: #aa3399;
}

p {
 text-indent: 0.5in;
}

a {
 color: #c8ff00;
 text-decoration: none
}

a:visited {
 color:#c8ff00;
}

a:link {
 color:#c8ff00;
}

a:hover {
 color:#ff0000;
}

RETURN