Site hosted by Angelfire.com: Build your free website today!
CSS

CSS stands for cascading style sheets. like you really care. its a computer language.
everything that you write in CSS goes between these two tags:

<style type=text/css> and </style>
and between the <head> and </head> tags in your html document.

on this page i will give you a few CSS codes that people use a lot. one of them is the code for changing the colors of your scrollbar. i'm sure you have been to lots of sites and gazed in awe at the site's beautiful colored scrollbars. well now, with my help, you will be able to color your own scrollbars on your site.
just copy the following code onto your website. you can change the colors to customize it.

<style type="text/css"> body {scrollbar-face-color: #000000; scrollbar-shadow-color: #000000; scrollbar-highlight-color: #000000; scrollbar-3dlight-color: #000000; scrollbar-darkshadow-color: #000000; scrollbar-track-color: #000000; scrollbar-arrow-color: #000000; } //--></style> that code with those particular colors would make your scrollbar all black.

ok, this isn't really css, but here's the code for making an image into a link/image thing.

<a href="http://sitenamehere.html"><img src="imagenamehere.gif"></a>

<--