|
CSS stands for cascading style sheets ... the cascading part you can get to in time, but styles, like in Word, are a great tool for a lot of different things on the web. They can help you keep all your pages looking consistent even on a huge site, it can make your job easier ( you could use raw html, as in <font color="red">some text</font>, around your links ) because there's less typing and less complex code. They can even save you bandwidth.
So create a new file, and call it styles.css ( or something else if you have a better imagination ), and put something like this in it:
a:link { text-decoration: none; }
.goodLink { color: green; }
.badLink { color: red; text-decoration: strikethrough; }
Then in your page, you want to use syntax like:
<a href="#" class="goodLink">This is a good link</a>
You still want to read up and learn what can and can't be done, and the link LadynRed provided is a great resource.
|