*I read from some articles that what can I do in table is can I do with Div... is it true? *what is the main purpose of DIV and table? when should I use table and div? *what are the techniques to minimize the size of website?
A table is a container for holding positionally related data, for example, a train schedule. Each item is related to other items in the same row in the same manner. Likewise the columns. Arbitrarily moving something from one row or column to another will break the meaning of the item that was established by its position. It has been used to layout web pages, but in any non-trivial layout, the markup cannot be well structured or semantic. The div is a container for holding other block level elements, providing a structural grouping, handy for css and javascript hooks. It has no semantic value and should not be parent to raw content. All content belongs in its own semantic block level container, which may be aggregated with other elements within a div. cheers, gary
use tables just for info's that must be structured in tables, else use div blocks, use div blocks for layouts in this way search engines will see your content much easy.