Forum Moderators: not2easy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>little boxes</title>
<style type="text/css">
#container {
position:relative;
width:1000px;
height:1000px;
background-color:black;
}
#container div {
position:absolute;
width:100px;
height:100px;
}
#box1 {
top:50px;
left:50px;
background-color:blue;
}
#box2 {
top:50px;
left:150px;
background-color:white;
}
#box3 {
top:50px;
left:250px;
background-color:blue;
}
#box4 {
top:300px;
left:50px;
background-color:gray;
}
#box5 {
top:300px;
left:150px;
background-color:red;
}
#box6 {
top:300px;
left:250px;
background-color:gray;
}
</style>
</head>
<body>
<div id="container">
<div id="box1"></div>
<div id="box2"></div>
<div id="box3"></div>
<div id="box4"></div>
<div id="box5"></div>
<div id="box6"></div>
</div>
</body>
</html>