Tell us what’s happening:
Stuck on Step 15 - In particular the portion of nesting “section” and “/section” to include everything in "main ".
Iv tried a number of different sequences in trying to nest the “main” so that it is included in the opening and closing tags, but I’m not having any luck.
Seen just about every hint from all the trial and error but I’m still confused on where “section” should start and where “/section” should end. The code below is the closest iv gotten, in at least seeing “section” turn red and highlight each other when hovered over but im still missing something.
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1>
<main <section>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
</main</section>
</body>
</html>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Hmm, so still no change in my hint when using that sequence. The only visible change I see is that section changes from a bright red color to a dull brick red color.
After inputting what you wrote, I tried leaving my starting point as is:
< main < section > but still no pass.
Iv tried
< section >
< main >
and
< section < main >
to match each other but I’m still messing something up somewhere.
Alrighty, I removed that dot, Finally got it with “< main >< section >”!
Thank you sooooo much for your patience, I had been trying to figure this out for a good while before I almost gave up bc I was too scared to ask for help. It really means the world! <3