There are few simple rules that you can follow to make structuring pages with the dvision tag a little simpler. These rules apply when you are trying to place 2 or more divisions horizontally adjacent to each other on the same page. (As shown below)
| Division 1 | Division 2 |
Notice the code for the left and right division is the same except for background-color. You could use the float : right property in the right division.
Code left division.
<div STYLE="float : left; width :50%; height:500px; background-color :#DFDFDF">text</div>
<br clear="all"> tag below the last adjacent division.
Code right division.
<div STYLE="float : left; width :50%; height:500px; background-color :#BFBFBF">text</div>