What the hell is going on with that DTD?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Just pick one and stick with it. Just glancing at your code I'd ditch both of those mashed together DTD's and go for an HTML 4.01 Strict.
I'm guessing that your menu isn't working in IE because you don't have any JavaScript to tell the menus when to show and when not to.
While I'm at it, this script tag:
Code:
<script language="JavaScript" type="text/javascript"></script>
Needs to be fixed:
Code:
<script type="text/javascript"><!--
//There's nothing in here!!!
//--></script>
Now onto your styles:
Code:
<style type="text/css" media="all"> @import "styles.css";</style>
<link href="/styles.css" rel="stylesheet" type="text/css">
One question, why? You've imported your style sheet, now why not just leave it at that?
Edit: Your e-mail link is buggered, it should look like this:
Code:
<a href="mailto:spowell_40@hotmail.com?subject=Kentucky Weightlifting" title="Email about a Kentucky Weightlifting or webpage-related issue">email me</a>
Bookmarks