In a comment to the previous post, I was asked how I had managed to save 10KB by optimizing HTML codes. A very correct question, indeed! If you simply replace a piece of code like this:
<table class=”product_box”>
<tr><td class=”product_box_title”> … </td></tr>
</table>
with a div-driven construction like
<div class=”product_box”>
<div class=”product_box_title”> … </div>
</div>
You won’t win anything but a couple of bytes. Where did I save kilobytes? The answer lies in the third practical advice that I’m going to give.











