I changed your p class w to a div. p is for paragraphs of text since you have unordered lists and headings you don't need a p there because it is not a paragraph. So in your css be sure to change all the p.w to .w. I also took out the language JavaScript because you already said it was java script with the type. I put your email address in a meta tag because the link tag is for linking files used in the page. I did not however load it but think it should work with these changes... also be sure to change the > back to the entity
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Home ~ Game-Dragon</title>
<meta name="Author" content="mailto:contact@gamedragon.com" />
<meta name="keywords" content="game, dragon, the, online, gaming, community, games, fun, arcade, music, action, strategy" />
<meta name="description" content="The Online Gaming Community" />
<meta name="ROBOTS" content="ALL" />
<link rel="stylesheet" href="css/style.css"></link>
<script type="text/javascript">
function change(ID){
ID = document.getElementById(1);
if(ID.style.display == "")
ID.style.display = "none";
else
ID.style.display = "";
}
</script>
</head>
<body>
<div id="outter">
<div class="header"><img src="images/logo2.bmp" alt="Image Description" /></div>
<div class="navigation">
<ul>
<li class="t"> </li>
<li class="b"> </li>
<li class="tl"> </li>
<li><a href="http://game-dragon.com">Home</a></li>
<li><a href="javascript:change(1)" class="mi">► Games ◄</a></li>
<li><a href="http://music.game-dragon.com">Music</a></li>
<li class="tr"> </li>
</ul>
<br />
<ul style="display:none;" id="one">
<li class="tls"> </li>
<li><a href="http://games.game-dragon.com/gnews.html">» Game News «</a></li>
<li><a href="http://games.game-dragon.com/arcade.html">» Arcade «</a></li>
<li><a href="http://games.game-dragon.com/action.html">» Action «</a></li>
<li><a href="http://games.game-dragon.com/strategy.html">» Strategy «</a></li>
<li class="trs"> </li>
</ul>
</div>
<div class="content2g">
<p class="w">Welcome To Game-Dragon.com,<br />
If you Like to Contact Me About My Site Or Would Like Something On My Website,<br />
Please Use The Contact Form Link In The Footer.</p>
<div class="w">
<h4> Updates: (15/11/08)</h4>
<ul>
<li>There Is Now A Music Section, But Only For Display No Actual Pages Work.</li>
</ul>
<h4>Currently Working On (09/11/08) (Marked * = Completed)</h4>
<ul>
<li> FireFox Friendly Site (Menu Bit Needs Fixing)*</li>
<li> Just General Fixes</li>
</ul>
</div>
</div>
</div>
<div class="footer"><p><a href="http://game-dragon.com">Home</a> - <a href="http://contact.game-dragon.com">Contact/Request</a></p></div>
</body>
</html>
Bookmarks