First of all, the div tag defines this section of code, and has been given the id "top".
This allows you to style it in the css as #top.
Next, the a tags make the header a link, with the href="#" being where it links to.
And finally the span tags come in handy later with the CSS.
2.Next up, the following section is for the sites navigation:
Again, the div is defining the section of code, now containing a p tag with the sites links.
Each link has its own a tag making it a link, then all the tags are closed again.
Thats pretty much it for the HTML, unless you want to div your content.
Sleek Design Code - CSS
3. Start of with the usual:
This removes any browser default margin/padding so you know exactly whats being applied where.
Now we style the sites background. First of all you need to save the background image. Using the same colours and pattern
as we did in the original tutorial, with a 1600 x 9px selection, you should save this image as back.gif (using
"Save for Web" to keep the file size down).
Now you can apply this image to the site:
Applying this image the the html tag, the image is centerd, and allowed to repeat along the y-axis.
The colour will be used if the image fails to load, or where the image runs out (on wide monitors).
4. Next, onto the header, using this code:
First of all, ive selected the h1 tag on the top div, making it 590px wide as it was in the original Photoshop document.
Next, the white background and 5px spacing has been added, which is then centerd by using an auto margin.
Now to work on the actual header link/image. So first of all save the header image (should be 590 x 100px), and save it as header.gif. So to style the link, using #top h1 a:
First of all, remove the underlining from the link. Next, the link is set to display: block so you can apply
the specific width and height making the whole image a link. And finally, the image is added as a background, with no-repeat
just to be safe ;]
And finally, using the span we added earlier, you can hide the header text, finishing the top:
5. Now onto the navigaion. First of all, you need to save the navigation background images. Making sure your selection is 9px wide so its tile-able, call the side parts "nav_side.gif", and the middle section "nav.gif". Heres the two images:

Now to apply the side part to the navigation div:
This sets the 40px height and applying the background image across the entire site width.
Next up, the style for the middle section:
First of all the height and width is stated so the section can be aligned, then the background image is applied. Next up, the top padding aligns the text vertically, then text-align: center does the same horizontally. Finally the text colour and size is chosen.
Now, the colour for the links has been added, the underline removed, and the hover state.
6. Thats pretty much it, though you may want to apply the following to your content div so thats its aligned the white background:
Finally...
There are lots of ways to implement this design and many people may disagree with how I do things but frankly I don't care.
This design is very accessible and should be sound on Firefox, IE and Safari.