I'm having trouble figuring out if my main page content should be in an article element. I feel it shouldn't be because it's the main page content - if it's supposed to be in an article element how does a search engine determine which article is the actual page content? the first one?
Which of the 2 examples below are a correct use or is neither correct?
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<header>Competitor</header>
<main>
<div>
<h1>t’s Time To Run Your First Ultramarathon!</h1>
<p>As marathons continue to gain popularity, so to do ultramarathons. Are you ready to move up?</p>
<h2>Journey into the Unknown.</h2>
<p>You may have mastered-or at least plateaued in-the marathon.</p>
</div>
<section>
<h1>Trail News</h1>
<article>
<h1>Obstacle course racing goes big time!</h1>
<p>Huge participation numbers and TV contracts are increasing exposure</p>
</article>
</section>
</main>
</body>
</html>
Or this (main body content in an article control) :
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<header>Competitor</header>
<main>
<article>
<h1>t’s Time To Run Your First Ultramarathon!</h1>
<p>As marathons continue to gain popularity, so to do ultramarathons. Are you ready to move up?</p>
<h2>Journey into the Unknown.</h2>
<p>You may have mastered-or at least plateaued in-the marathon.</p>
</article>
<section>
<h1>Trail News</h1>
<article>
<h1>Obstacle course racing goes big time!</h1>
<p>Huge participation numbers and TV contracts are increasing exposure</p>
</article>
</section>
</main>
</body>
</html>