Whereas div elements can be used to contain sections , used primarily as scaffolding on which to hang CSS, they don’t hold a great deal of meaning . Sectioning involves a handful of tags that can be used to define specific parts of a page, such as articles , headers , footers , and navigation . Articles and Sections An article element can be used to mark up a standalone section of content. This could be used just once, if you think of a blog post as an article, for example, or a number of times, if you imagine replicating a traditional newspaper page with numerous articles. A section element represents a more general section and could be used to split up an article, or to represent chapters, for example. < article > < section id = "intro" > < p > [An introduction] </ p > </ section > < section id = "main_content" > < p > [Content] </ p > ...
If you have time to check my website