Forum Moderators: not2easy
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Untitled</title>
<style type="text/css">
/* borders just for exercise */
#wrapper { width: 804px; margin: auto; border: 1px solid #000; }
#content { width: 675px; float: left; border: 1px solid #ff0000; }
#sidebar { width: 120px; float: left; margin-left: 5px; border: 1px solid #0000ff; }
/* this line added ONLY to try and break it. */
#footer { width: 400px; border: 1px solid #00ff00; }
#footer ul,
#footer ul li { margin:0; padding:0; text-align: center; }
#footer ul li { display: inline; list-style: none; }
</style>
</head>
<body>
<div id="wrapper">
<div id="content">
<p>Shallow content. Shallow content.
Shallow content. Shallow content. </p>
</div> <!-- content -->
<div id="sidebar">
<!-- this is a 160 X 600 image. I intentionally
left the size attributes off trying to break it.
it didn't. -->
<img src="sidebar.jpg" alt="test">
</div> <!-- sidebar -->
<div id="footer">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blah</a></li>
<li><a href="#">Contact</a></li>
</div>
</div> <!--wrapper -->
</body>
</html>