Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
<html>
<body>
<h1><main>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p>
</main>
</body>
</html>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36
Every(most) html structure can be put three parts;
the header(which usually contains the heading of the web page)
2.the main (which usually contains the actual information you are trying to provide on the web page )
the footer(which usually contains the conclusion or closing remarks of the web page)
Thus in your case;
after your “h1” and “h2” elements, move to the next line and open the “main” element. Then you expand the main element you have open and nest the “p” element inside of it. That makes it easier to get your structure right.
this curriculum consists of many small steps
it gives knowledge in little portions
it’s easier for people with no coding background that way
things that you described covered in later parts of curriculum