Learn HTML by Building a Cat Photo App - Step 32

Tell us what’s happening:

Ive got a opening and a closing and the font changes on the page I’m building but is defining me permission to move on from the task saying I need an opening when I already got one

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>
        <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.">

<!-- User Editable Region -->

        
          <figcaption>Cats <em>hate</em> other cats.</figcaption>  
        

<!-- User Editable Region -->

        </figure>
      </section>
    </main>
  </body>
</html>

[quote=“Hayden_is_a_g, post:1, topic:705711”]
<em>love</em>

[quote=“Hayden_is_a_g, post:1, topic:705711”]
<em>hate</em>

Hello and Welcome to the forum @Hayden_is_a_g !

This step asks us to wrap the text hate in the strong element tags.

Wishing you good progress on your coding journey. :slightly_smiling_face:

Hey thanks for that, ive done exactly what you said but still saying I’m wrong and there is no opening. On the page I’m building it worked and changed tho.

Suggestion: Try resetting the step and only add the strong element tags around the text hate.

Do not change or add anything else.

If it still is not showing correctly, you may wish to check if there is an extension, or dark mode causing the issue, or try submitting from a different browser. Sometimes, browsers have added code that interferes with the recognition.

Keep up the good progress! :slightly_smiling_face:

1 Like