Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<html>
<body>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more cat photos in our gallery.</p>
<h1>usefulness of cats<h1/>
<p>cats are mystery creatures<p/>
<main>they are crazy creatures</main>
<main>
</body>
</html>
Your mobile information:
itel A632WM - Android 13 - Android SDK 33
Challenge: Learn HTML by Building a Cat Photo App - Step 5
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
The main element is used to define the main content of a webpage.
By putting a main opening tag above your h1 element and a main closing tag below your p element, you are nesting all of these other elements (which represent the main content of your webpage) inside your main element.
Please reset the step to restore the original code, then nest the h1, h2, and p elements inside a main element.