HTML5 structure—div, section & article ❧ Oli.jp (@boblet)
april 2011 by jpcody
In writing POSH HTML we should use the most suitable or semantically accurate element. In HTML4 <div> is a general block-level container element; it doesn’t have any semantic meaning beyond being block-level, and is used when there are no more appropriate elements (i.e. all the time). There is no requirement for the things inside the <div> to be related to each other.
html
html5
article
section
div
april 2011 by jpcody