Crie um Aplicativo de Fotos de Gatos - Passo 14

Conte-nos o que está acontecendo:

estou preso no passo 14, pois fala que só pode ter uma instancia da frase “cute cats” porem meu código só tem uma instancia e ele continua travado nesta parte. tenho um print da tela caso precisem, para melhor entendimento!

Seu código até o momento

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>Everyone loves cute cats online!<a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a></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>

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Informações do desafio:

Crie um Aplicativo de Fotos de Gatos - Passo 14

You do have two instances of “cute cats” because you added an anchor element after the existing paragraph text rather than making the words “cute cats” a link as instructed.

Just do the same thing you did with “cat photos” in the next paragraph.