HTML tutorial
Best place for HTML tutorial is http://www.w3schools.com/html/
Please give in comments your source of HTML knowledge.
To be a good HTML coder need a lot of practice. Difference between browsers can be painful. In IE not always DIVs are stay in the right place, in this could help clear:both,
<div>
<div style=”float:left”> </div>
<div style=”float:right”> </div>
<div style=”clear:both”> </div>
</div>
In above example we have two columns
for three columns I recomand this way of coding:
<div>
<div style=”float:left”>
<div style=”float:left”> </div>
<div style=”float:right”> </div>
<div style=”clear:both”> </div>
</div>
<div style=”float:right”> </div>
<div style=”clear:both”> </div>
</div>
If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!