Aprenda HTML criando um aplicativo de fotos de gatos - Passo 63

Conte-nos o que está acontecendo:
Descreva detalhadamente o problema aqui.
estou a 50m tentando resolver isso e nao to conseguino!

  **Seu código até o momento**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <h2>Cat Photos</h2>
      <!-- TODO: Adicionar link para as fotos de gatos -->
      <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>
    </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.">
        <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
      </figure>
    </section>
    <section>
      <h2>Cat Form</h2>
      <form action="https://freecatphotoapp.com/submit-cat-photo">
        <fieldset>
          <legend>Is your cat an indoor or outdoor cat?</legend>
          <label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor" checked> Indoor</label>
          <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
        </fieldset>
        <fieldset>
          <legend>What's your cat's personality?</legend>
          <input id="loving" type="checkbox" name="personality" value="loving" checked> <label for="loving">Loving</label>
          <input id="lazy" type="checkbox" name="personality" value="lazy"> <label for="lazy">Lazy</label>
          <input id="energetic" type="checkbox" name="personality" value="energetic"> <label for="energetic">Energetic</label>
        </fieldset>
        <input type="text" name="catphotourl" placeholder="cat photo URL" required>
        <button type="submit">Submit</button>
      </form>
    </section>
  </main>
  <footer>
    <p>
      No Copyright - freeCodeCamp.org. <a href="https://www.freecodecamp.org."></a>
    </p>
  </footer>
</body>
</html>
  **Informações de seu navegador:**

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

Desafio: Aprenda HTML criando um aplicativo de fotos de gatos - Passo 63

Link para o desafio:

Sorry, I do not speak Portuguese, but I see the issue here.

They want you to enclose the text “freeCodeCamp.org” with the anchor element so that the text is the link. What you have right now is “No Copyright - freeCodeCamp.org” followed by a link with no text inside of it. The correct syntax for an anchor element looks like this:

 <a href="https://www.website.com">click here to go to website</a> 

I hope that helps.

oops, thanks. it doesn’t work anymore what counts is the intention!

Olá, @zoehg. Boas-vindas ao fórum do freeCodeCamp. Movi seu tópico para a seção do português em função do idioma. Espero que não se importe. As tags para a criação do elemento a no rodapé, de acordo com a instrução, precisam estar envolvendo o texto freeCodeCamp.org.
O modelo para isso seria:
<a href="https://www.freecodecamp.org">Texto que você precisa envolver</a>
Faça o teste e nos informe se ele passou.
Bons estudos. :smiley:

Olá, boa noite. não passou estou a 5 dias nesse nivel e esta atrapalhando meus desempenho
imagem_2022-08-08_003434688|690x388

Oi, @zoehg. O texto está igual ao que você mostra na imagem? Se está, o problema é haver um espaço a mais antes de “freeCodeCamp.org”. Além disso, no href, aquele ponto final está sobrando. O endereço deve ser href="https://www.freecodecamp.org". Lembrando que os testes são bem sensíveis - espaços sobrando ou um ponto que não deveria estar lá podem fazer com que o teste não passe. Teste removendo esses excessos (o espaço antes do texto freecodecamp.org e o ponto final no texto e no endereço) e nos diga se passou. Bons estudos. :slight_smile:

1 Like

Obrigado! foi muito útil.<3

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.