I'm new to HTML5 and I read the outlining concept and I understood. I tried part of code in this site(to outline my code) :
<!DOCTYPE html>
<article>
<hgroup>
<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
</hgroup>
</article>
But the result I am getting is confusing me. I'm getting the following result :
1.Untitled Section
1.H1
I know the reason why I'm getting 1.Untitled Section
in my output, but where does my this part of code gone
<h2>H2</h2>
<h3>H3</h3>
I couldn't see H2
and H3
in my output. What is the reason for it? Explain with an example.
Thanks in advance.
An
hgroup
only includes the (first) highest level heading in the outline.From http://dev.w3.org/html5/spec/the-hgroup-element.html
The point of using
hgroup
is to actually mask out the subsequent headers from the outline. So the behavior you are seeing is the reason for the existence of the element.