<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p>
</main>
</body>
</html
Here is my code, these are the instructions: HTML5 has some elements that identify different content areas. These elements make your HTML easier to read and help with Search Engine Optimization (SEO) and accessibility.
Identify the main section of this page by adding a <main>
opening tag before the h1
element, and a </main>
closing tag after the p
element.
Upon checking my work:
Sorry, your code does not pass. Keep trying.
Hint
Your main
element’s closing tag should be below the p
element. You have them in the wrong order.
I clearly cannot figure out which order to put them in.