freeCodeCamp/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website....

3.2 KiB

id title challengeType videoUrl localeTitle
bad87fee1348bd9aedf08812 Add Images to Your Website 0 Adicionar imagens ao seu site

Descrição

Você pode adicionar imagens ao seu site usando o elemento img e apontar para o URL de uma imagem específica usando o atributo src Um exemplo disso seria:

<img src="https://www.your-image-source.com/your-image.jpg">

Note que os elementos img são de fechamento automático. Todos os elementos img devem ter um atributo alt . O texto dentro de um atributo alt é usado para leitores de tela para melhorar a acessibilidade e é exibido se a imagem não for carregada.

Nota: Se a imagem é puramente decorativa, usar um atributo alt vazio é uma prática recomendada. Idealmente, o atributo alt não deve conter caracteres especiais, a menos que seja necessário. Vamos adicionar um atributo alt ao nosso exemplo de img acima: <img src="https://www.your-image-source.com/your-image.jpg" alt="Author standing on a beach with two thumbs up.">

Instruções

Vamos tentar adicionar uma imagem ao nosso site:

Insira uma tag img antes do elemento h2 . Agora defina o atributo src para que aponte para este URL: https://bit.ly/fcc-relaxing-cat Por fim, não se esqueça de dar à sua imagem um texto alt .

Testes

tests:
  - text: Sua página deve ter um elemento de imagem.
    testString: 'assert($("img").length > 0, "Your page should have an image element.");'
  - text: Sua imagem deve ter um atributo <code>src</code> que aponte para a imagem do gatinho.
    testString: 'assert(new RegExp("\/\/bit.ly\/fcc-relaxing-cat|\/\/s3.amazonaws.com\/freecodecamp\/relaxing-cat.jpg", "gi").test($("img").attr("src")), "Your image should have a <code>src</code> attribute that points to the kitten image.");'
  - text: Seu elemento de imagem <strong>deve</strong> ter um atributo <code>alt</code> .
    testString: 'assert(code.match(/alt\s*?=\s*?(\"|\").*(\"|\")/), "Your image element <strong>must</strong> have an <code>alt</code> attribute.");'

Desafio

<img src="https://bit.ly/fcc-relaxing-cat" alt="Gatinho">
<h2>CatPhotoApp</h2>
<main>


  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

Solução

<h2>CatPhotoApp</h2>
<main>


  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>