From edd1e85f0bfa5226446a459f71ec5ca4599d3342 Mon Sep 17 00:00:00 2001 From: Matheus Emanuel Date: Sun, 4 Nov 2018 10:33:46 -0300 Subject: [PATCH] Change in section headings (#19487) --- .../add-images-to-your-website.portuguese.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.portuguese.md b/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.portuguese.md index 78dc3cdcdf..116cf91de6 100644 --- a/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.portuguese.md +++ b/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.portuguese.md @@ -7,10 +7,10 @@ videoUrl: '' localeTitle: Adicionar imagens ao seu site --- -## Description +## 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.">
-## Instructions +## 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 .
## Tests @@ -29,12 +29,13 @@ tests: -## Challenge Seed +## Desafio semente
```html +Gatinho

CatPhotoApp

@@ -51,10 +52,16 @@ tests:
-## Solution +## Solução
-```js -// solution required +```html +

CatPhotoApp

+
+ + +

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

+

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

+
```