<link href="layout.css" rel="stylesheet" type="text/css" />
<link href="elements.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="unique-ims"><img src="images/unique-ims.gif" width="386" height="75"alt="Unique Information Management Solutions"/>
</div>
<div id="squares">
<div id="red"></div></li>
<div id="green"></div>
<div id="blue"></div>
</div><!--squares-->
</div><!--container-->
</body>
</html>
html, body {
margin: 0px;
padding:0;
height:100%;
background-color:#333;
}
#container {
width:760px;
margin: 0 auto;
height:100%;
background-color:#000;
min-height:100%;
}
#unique-ims {
position:absolute;
left:25px;
width:760px;
}
#squares{
text-align:center;
position:absolute;
width:760px;
top:200px;
height:200px;
}
|