bro, try searching CSS tutorials, para maka.start ka ug apply CSS sa imong site using DIV. Mas dali mo.load kung DIV kay gamay ra ang elements, unlike TABLES.
Here some sample HTML Code:
Code:
<style type="text/css">
@import url('media/css/style.css');
</style>
</head>
<body>
<div id="main_container">
<div id="banner">
<img src="media/img/logo.jpg" alt="Bean Bag Inc."><br>
</div>
<form name="frmSurvey" id="frmSurvey" method="POST" action=<?$_SERVER['PHP_SELF']?>>
<div id="qcontainer">
<div id="q1">
<div id="qColor"> How interested are you in getting an FTV Bean Bag?<br></div>
<fieldset>
<legend>[ Choices ]</legend>
<div align="left">
<input type="hidden" id="poll1" name="poll1" value="1">
<input type="radio" id="c11" name="c1" value="1"> Very Interested <br>
<input type="radio" id="c12" name="c1" value="2"> Interested <br>
<input type="radio" id="c13" name="c1" value="3"> Neutral <br>
<input type="radio" id="c14" name="c1" value="4"> Not really <br>
<input type="radio" id="c15" name="c1" value="5"> Don't care <br>
</div>
</fieldset>
</div>
<div id="q2">
<div id="qColor"> How much are you willing to pay for this Bean Bag?<br></div>
<fieldset>
<legend>[ Choices ]</legend>
<div align="left">
<input type="hidden" id="poll2" name="poll2" value="2">
<input type="radio" id="c21" name="c2" value="6"> P 2,500.00 - P 3,500.00 <br>
<input type="radio" id="c22" name="c2" value="7"> P 3,000.00 - P 3,500.00 <br>
<input type="radio" id="c23" name="c2" value="8"> P 4,000.00 - P 4,500.00 <br>
<input type="radio" id="c24" name="c2" value="9"> P 5,000.00 <br>
<input type="radio" id="c25" name="c2" value="10"> Doesn't matter as long I can get one! <br>
</div>
</fieldset>
</div>
</div>
<div id="footer">
<br>
<input type="submit" name="submitBtn" value=" V o t e " onclick="clicker();">
<input type="reset" value=" Reset Survey ">
</div>
</form>
</div>
</body>
</html>
Output:
[img width=500 height=255]http://img340.imageshack.us/img340/6233/snapshot20080211001902kx7.jpg[/img]