I have coded a HTML5 list of articles. I have been searching if this is the correct way to use the new HTML5 semantic tags, but I am still unsure. Is this markup correct in terms of using semantics?
<section>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
</section>