HTML is stuck in bold!!!!!!!!!?

  • Thread starter Thread starter Helga Bon Elmer
  • Start date Start date
H

Helga Bon Elmer

Guest
I typed up a bunch of HTML (using CSS) and everything is bold! I couldn't find any bold tags and I can't fix the font to unbold it! Help!!!!!

BTW- this is my css code:
html, body, h1, h2, h3, h4 {
margin: 0;
padding: 0;
}
h1 img {
display: block;
}
img {
border: 0;
}
a {
color: #990000;
font-weight: normal;
text-decoration: none;
}
a:hover {
color: #FFFF00;
font-style:normal;
font-weight:normal;
}
.left {
float: left;
}
.right {
float: right;
}
.more {
text-align: right;
}
.clear {
clear: both;
}

body {
background: #804000 url(images/scroll1.jpg) no-repeat;
text-align: center;
font: 2px arial;
color: #000000;


}
/** Right **/
#nav {
height: 98px;
}
#nav ul {
margin: 0;
padding: 0 0 0 0px;
}
#nav li {
float: left;
border-right: 0px solid #000000;
padding: 16px 19px 9px 19px;
list-style: none;
}
#nav a {
color: #000000;
font: 15px arial;
font-weight: normal;
}
#nav .selected a {
font-weight: bold;
}
/** Body **/
#body {
background: url(images/scroll1.jpg) no-repeat;
}
#body .left {
margin: 0 26px 0 0;
}
/**container**/
#container {
margin: 0 auto;
width: 700px;
}
</style>




And here is my CSS 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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>My Title</title>
<link rel="stylesheet" href="style.css" type="text/css" charset="utf-8" />
</HEAD>

</head>

<div id="wrapper">
<h1><font size=2><b></h1><b>
<div id="nav">
<ul>
<li><a href="Index.html">Home</a></li>
<li><a href="page1.html">Early Life</a></li>
<li><a href="page2.html">Rise to Power</a></li>
<li><a href="page3.html">Red China</a></li>
<li><a href="page4.html">Actions</a></li>
<li><a href="page5.html"><b>Allies and Enemies</b></a></li>
<li class="last"><a href="page6.html">Legacy</a></li>
</ul>
</div>
<div id="container">
This is the body text.

</body>



Anyone see anything I missed??? Why is all the text bold???
</html>
 
Back
Top