Tell us what’s happening:
Describe your issue in detail here.
I need to know where I would try to nest the section element next
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<section>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>
</section>
<section>
<h2>Cat Lists</h2>
<h3>Things cats love:</h3>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<!-- User Editable Region --> I feel like am not on the right part here pls someone should show me what am supposed to do
<figure>
<h3>Top 3 things cats hate:</h3>
<ul>
<li>too much attention</li>
<li>spoiled food</li>
<li>loud noises</li>
</ul>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
<figcaption>Cats <em>love</em> lasagna.</figcaption>
</figure>
<!-- User Editable Region -->
</section>
</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/114.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 26
Think w me, I’m trying to make you realize what is wrong there, did you saw that you are adding things that cats hates? why the lasagna href with the image of lasagna and the text that cats love lasagna are been coded after showing what cats hates.
Literally what i sayd to you, looks like you just copied the code from somewhere else hoping that it works, but you nested everything wrong inside the <figure></figure>
When you should only do what it asks you to do.
Step by step brother.
Delete everything inside your figure, nest the with only the <img> and the figcaption elements, nest your figure on your what cats love
You can continue to try and explain in words, or show an example to provide a better explanation. However, posting screenshots of the code to pass the challenge is not allowed, and that is what I have removed.
Please show us your newest code. Have you tried changing anything from the suggestions that were given to you? It would make helping a lot easier if we could see what you are actually trying
Yess sir, undertood that! But, my question in here it is if im being coherent with what i’m saying.
I found what is wrong, told in every single step and code examples.
I want to know if you think that my explanation is right.