This content has been marked as final.
Show 1 reply
-
1. Re: Creating sections on a web page
osgood_ Mar 28, 2011 9:05 AM (in response to ryanlafleur)Just add three <div>s to your code where you want the columns to appear (as shown below).
<div id="colOne">Column One</div>
<div id="colTwo">Column Two</div>
<div id="colThree">Column Three</div>
Then use some css to arrange them side-by-side (as shown)
#colOne, #colTwo, #colThree {
float: left;
width: 320px;
}
Each <div> is 320px wide so make sure there is enough width in your design to accomodate that width (960px)


