CSS is for styling only. You can maintain the same styling on links, images, and text with CSS, but you can't control the actual text of the links and/or contact information.
For example, if you wanted all of your links to be red and bolded, you could write CSS like this:
Code:
a { color:red; font-weight:bold }
Now, if you wanted to change the color, just change the red to blue or whatever. Same thing applies to regular text.
The header is a little different. You could control the image via CSS by applying it as your background do the header div.
Something like this:
CSS
Code:
#header
{
background-image:url(background.jpg);
height:200px;
width:100%;
}
HTML:
Code:
<div id="header">
<h1>My Website's Title</h1>
</div>
Bookmarks