Good job man. I'm assuing maybe the box with have an image. Your links are fine. Good job with the text. I would focus on the CSS end more. Get rid of the craziness like your triple center tags.
Try this maybe: First make a wrapper div for simplity, then style it with...
Code:
#wrapper {
margin: 0 auto 0;
}
The first zero is margin left, the last is right, auto keeps trying to make it happen in both directions. This reliably centers your page on most browers. To make it center in IE 5.0 and 5.5, you have to do it with text on body, then revert it on wrapper. Example.
Code:
body { /* this centers whole page for IE 5x */
text-align : center;
}
...then, control the actual text with wrapper...
Code:
#wrapper { /* This tell the text to move left, but the page stays center */
margin: 0 auto 0;
text-align: left;
}
The meta data could use some work.
I'd get reid of that damn table in an otherwise decent work up. The table in this case serves no purpose. I like grays.
You should separate your links with more than whitespace. Turn of styles and you'll see what I'm getting at. It's an accessiblity thing. Try this perhaps.
Code:
Link 1 <span class="strip">·</span> Link 2
...then maybe do this...
Code:
.strip {
display: none;
}
Okay, one more thing for now...
this:
Code:
<div id="logo">
<img src="title.gif" alt="Title" />
</div>
...really should be this:
Code:
<div id="logo">
<img src="title.gif" alt="Tom's Work Graphic Design." />
</div>
Again, turn off styles and you'll better see what I mean.
A future in web design? Hell yeah, go for it. Probably a better chances of landing a job than if you were into say calligraphy.
Good luck. Hope this helps.
Mike
Bookmarks