Header element in HTML 5

How many <header> element I can keep in HTML 5 ?

There are lots of good HTML5 sites online that explain this sort of thing (just so you know :slight_smile: ). E.g. check this out:

http://html5doctor.com/the-header-element/

You are allowed to divide your page up into as many sections as necessary, and each section (theoretically) can have a header, so far as I understand (which isn’t saying much :slight_smile: ).

when you say divide …do you mean using <div> ? or using <section> ?

and each section (theoretically) can have a header, so far as I understand (which isn’t saying much :slight_smile: ).

Ok. Did you mean like this …

<div>
<header>
<p>tick tick</p>
</header>
</div>

OR like this…

<section>
<header>
<p>tick tick</p>
</header>
</section>

Sorry, I’m talking about <sections>s here.

… and of course the heading is primarily for heading elements, I presume …

The second one, although you wouldn’t just have a header in there:


<section>
<header>
<p>tick tick</p>
</header>

[COLOR="#FF0000"]More content here ...[/COLOR]

</section>