curriculum/challenges/english/blocks/workshop-blog-page/669fdd3965f36f40af9615e5.md
Now that you are finished building out the page header, you will need to start adding your main content.
Below your header, add a main element.
Your main element should have an opening tag.
assert.match(code, /<main\>/);
Your main element should have a closing tag.
assert.match(code, /<\/main\>/);
Your main element should be below your header element.
assert.exists(document.querySelector('header + main'));
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mr. Whiskers' Blog</title>
<meta charset="UTF-8" />
</head>
<body>
<header>
<h1>Welcome to Mr. Whiskers' Blog Page!</h1>
<figure>
<figcaption>Mr. Whiskers in the Garden</figcaption>
</figure>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#posts">Posts</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
--fcc-editable-region--
--fcc-editable-region--
</body>
</html>