Since i am new to CSS, i am not sure if the following page layout is possible using Div/CSS or shall i use HTML table?.
i want to design my page such that, Left sid
You don't need to use There are a few options for implementing this layout. Here's a good tutorial on CSS layout: Here is one example of your layout: HTML CSS Screenshot of results for the layout you described (and you won't need anything CSS3 or HTML5 specific).
.left-column, .right-column{
float:left;
}
.left-column{
width:30%;
}
.right-column{
width:60%;
}
div{
padding:10px;
border:solid 1px black;
}