Do not abuse the use of section tags and article tags, using them for structure, continue to use the div instead.
In html5, when using headers and sections, you should verify that each section has its own title. You can use the outliner to see what the structure looks like.
http://gsnedders.html5.org/outliner/
According to your case, you will notice that the name of the site is even more relevant than the name of the page. Everything is good. But it is better to use a div to separate the header from the content.
// Answer 12/03/01
You can try to use some strange position to achieve your goal: First of all, the section should have a title if it is not equal to zero.
<header> <h1 id="position-me-in-section">Page Title h1</h1> </header> <div id="content"> <section> <h6 id="position-me-in-header">Site Title h6</h6> <p>Page Content Here</p> </section> </div>
source share