Background Color on Links
Always wanted those links that have a background color and the color changes when you mouse over it? Like this:
Just copy and paste this code into the top of your page and change the colors. For every link, add class="nav" after the a and before href.
Or would you like to add a color changing border to the side? For every link, add class="nav" after the a and before href.
How about a border on the bottom? For every link, add class="nav" after the a and before href.
What's the point of adding class="nav"? Well, in the css you're defining a class (nav) and and the properties (all the colors and whatnot). You put it in a class so it doesn't affect all the links- just the ones you add the little snippet to (also called a 'class selector' because it selects which class you want the properties to show up on)

