Is the article tag of HTML5 only to use in blogs? Is it only for blog articles? Is it not to use for the content section of website, which is not a blog?
Generally I use
<div id="content">
<h2> title </h2>
<p> content </p>
</div>
Should I replace div with article
<article id="content">
<h2> title </h2>
<p> content </p>
</article>
or
<div id="content">
<article>
<h2> title </h2>
<p> content </p>
</article>
</div>
From the spec:
So I guess it is quite dependant on what
#contentcontains. If it would only contain that specificarticle(or stuff related to thatarticle, like comments nested as furtherarticles), you do not need thediv.My favourite resource about this – HTML5Doctor