Tell us what’s happening:
I cannot solve step 14 please help me how to solve step
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<!-- User Editable Region -->
<P> cute cats <a href=https://cdn.freecodecamp.org/curriculum/cat-photo-app</a>Everyone loves cute cats</p>`
<!-- User Editable Region -->
<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</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/136.0.0.0 Safari/537.36 Edg/136.0.0.0
Challenge Information:
Build a Cat Photo App - Step 14
ILM
June 2, 2025, 2:35pm
2
you need to do something similar to this, which is what you did in the last few steps
I suggest you reset the step and try again
Tell us what’s happening:
how to solve the step 37 and i connot solve this solution
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<section>
<h2>Cat Photos</h2>
<p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
<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>catnip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<figure>
<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>
<h3>Top 3 things cats hate:</h3>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
<figcaption>Cats <strong>hate</strong> other cats.</figcaption>
</figure>
</section>
</main>
<footer>
<!-- User Editable Region -->
<p>No Copyright - freeCodeCamp.org</p>
</footer>
<a href="https://www.freecodecamp.org">freeCodeCamp.org</a>
</body>
<!-- User Editable Region -->
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0
Challenge Information:
Build a Cat Photo App - Step 37
ILM
June 5, 2025, 9:58am
4
you have created a correct a
element, but you need to do that around the existing text, not write new text
Your code displays as:
freeCodeCamp.org No Copyright - freeCodeCamp.org
The starting code for this step is:
<p>No Copyright - freeCodeCamp.org</p>
You should add the anchor (a
) tags around the existing text, rather than duplicating the text. Also, ensure that your url for the href
attribute is exactly correct, as yours has an additional period (.
) on the end.
EXAMPLE:
<!-- text without link -->
<p>Please visit my website for awesome content</p>
<!-- 'my website' turned into a link -->
<p>Please visit <a href="example.com">my website</a> for awesome content</p>
1 Like
Mefoni
June 23, 2025, 5:48pm
6
Thank you I will try that and let you know