Style sheets
What are style sheets:
Well they are basically a tool to change the look of fonts in hyperlinks, an example of this is the links on the left hand bar, they turn from white to blue.
The script:
The script has to be placed in the head section of the document ie: <head> the script goes here</head>
What it means:
Text-decoration: can either be set to none, or underline + overline
color: #ffffff This bit can be changed on any line to alter the colour of the links.
You can create an external style sheet for your entire website, or for a
group of related pages on your website. Each web page must link to the style
sheet using the <LINK>
element. The <LINK> element must always be placed within the <HEAD>
of your document, as follows:
<HEAD>
<TITLE>Style sheet example</TITLE>
<LINK REL="stylesheet" HREF="styles/mystyles.css" TYPE="text/css">
</HEAD>
The above example links to a style sheet file called mystyles.css in a directory called styles.
The style sheet can be written in any text editor. The file should not
contain any HTML tags like <HEAD> or <STYLE>
You can have many more options in css but most of it is manageable by using your editor or by playing around with the code.
More coming shortly!