I currently have a page on a website that covers two topics. As an example, let us say that the topics are anaerobic and aerobic exercise. I am using a template and there is a block for the header, the h1, the body text (in my example, this includes all <p>, <h2>, and <ul> & <li> content) , and then the footer.
The page is structured in the following way:
<header>Text here</header>
<h1>Text here</h1>
<p>Few words to describe what body text is about</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
<h2>Text about anaerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
<h2>Text about aerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
<p>Text including link to another page</p>
<footer>Text here</footer>
In the above, I think that it might be good to include <section> tags, and I am trying to determine where I should place those tags?
Example 1
<header>Text here</header>
<h1>Text here</h1>
<section>
<p>Few words to describe what body text is about</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
</section>
<section>
<h2>Text about anaerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
</section>
<section>
<h2>Text about aerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
</section>
<section>
<p>Text including link to another page</p>
</section>
<footer>Text here</footer>
Example 2
<header>Text here</header>
<h1>Text here</h1>
<p>Few words to describe what body text is about</p>
<section>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
</section>
<section>
<h2>Text about anaerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
</section>
<section>
<h2>Text about aerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
</section>
<p>Text including link to another page</p>
<footer>Text here</footer>
Example 3
<header>Text here</header>
<h1>Text here</h1>
<p>Few words to describe what body text is about</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
<p>Several sentences about both topics</p>
<section>
<h2>Text about anaerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
</section>
<section>
<h2>Text about aerobic exercise</h2>
<ul>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
<li>Several sentence bullet point.</li>
</ul>
</section>
<p>Text including link to another page</p>
<footer>Text here</footer>
The above are a few possibilities that I thought of. I think it might also be possible to put the header in a <section> tag, the h1 tag in a <section> tag, and the footer in a <section> tag. Would you recommend doing any or all of these things?
Also, any other suggestions as to where the section tags should be placed are welcome. I just wrote out a couple of examples that I feel are possible and made a few more suggestions that I didn’t write out as examples but are possibilities, but I think that you guys may have more suggestions.
Do you think that adding the <sections> may help the search engines to interpret the contents of a page better and send more targeted traffic?
I appreciate your help.