I am designing a semantic mark-up of my HTML page. The page consists of a main content block and of a side bar. There are several independent blocks in the side bar like latest news, links, statistics e.t.c. Each block has a header with a block name: "Statistics", "Links" e.t.c.
The question. Is it a semanticly correct usage of the tag header
if I put a block name in the header
tag like <section id="News"><header>News</header><ul>...</ul></section>
.
Is it a semanticly correct to put the name of the section in <h*>
tag instead?
What is the difference between the options and why one should use one of the options?