Firefox best for test your coding

March 19th, 2008 by info
If you are a internet programmer best tool for you is Firefox.

. Firefox is not simple browser, it has powerfull addons addons.mozilla.org/en-Us/firefox. I personaly use X-Ray (for display website layout), ColorZilla for color probe of website element, Web Developer (for css view, div or table layout, display form details), Html Validator (to check page validation). There are much more addons, please check. Evrybody can find something useful. You also can contribute addons for firefox, this is simple compressed javascript, in jar format. You can dissassemble evry addon with probably any zip(jar) decompresor. Tell us abut your's favorite plugins.

HTML tutorial

March 12th, 2008 by info

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>