You missed a closing div at the end, but otherwise, this should look fine. Because you have the color black on the #main div, that may be tricking you. If you want a black bg, better to put it on the body. Here is a slightly tidied version of your code. Save it in a .html file and open it in your browser.
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Experiment</title>
<style type="text/css" media="all">
html, body, div,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre, code, hr, img,
form, fieldset, legend, label, textarea,
span, em, strong, sub, sup, cite,
table, tbody, td, tfoot, th, thead, tr, tt,
dl, dt, dd, ol, ul, li {
margin: 0;
padding: 0;
}
img {
border: 0;
vertical-align: bottom;
}
#main1 {
background-repeat: no-repeat;
background-image: url(images/headerimg.jpg);
background-color: black;
}
#logo2 {
padding-left: 200px;
width: 635px;
padding-top: 30px;
height: 30px;
}
#header2 {overflow: hidden;}
#content {background: white;}
#footer {
clear: both;
height: 36px;
padding: 15px 0;
background-color:Black;
background-repeat: no-repeat;
background-image: url(images/footer.jpg);
border-top: 5px solid #5592C6;
text-align: center;
}
</style>
</head>
<body>
<div id="main1">
<div id="header2">
<div id="logo2">
<p><h2>title</h2></p>
</div>
<div id="menu">
<ul>
<li><a href="#" title="">Home</a></li>
<li><a href="#" title="">Products</a></li>
<li><a href="#" title=""> Our plan </a></li>
<li><a href="#" title="">About</a></li>
<li><a href="#" title="">Contact</a></li>
</ul>
</div>
</div>
<div id="content">
<p>This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. </p>
<p>This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. This is the content section. </p>
</div>
<div id="footer">
<p>Copyright © 2011.<a href="#">Privacy Policy</a> | <a href="#">Terms of Use</a></p>
</div>
</div>
</body>
</html>
Bookmarks