When I first started using style sheets it was a while ago and like most people I would embed them in my pages. Meaning I would add a code like
<style type="text/css">
Font{font-family:Verdana,Arial,Helvetica; font-size:8pt}
</style>
to all of my pages, and I'd also use the a:link tags to define the anchors. Now the problem with that is while it works perfect it makes it a pain to update all of the elements when you want to make changes across your entire site. Now the answer is simple. All we need to do is create one file and add some code to all of our pages to call on it. Let's start by creating our CSS file. All this file consists of is the text we would normally add to our pages to generate the CSS code, minus the <style> tags. Here is an example of a .css file that you could use to define how your links would look: |