Observe que os elementos `img` fecham em si mesmos.
Todos os elementos `img`**precisam** ter um atributo `alt`. O texto de um atributo `alt` é usado por leitores de tela para melhorar a acessibilidade. Ele é exibido se a imagem não puder ser carregada.
**Observação:** usar um atributo `alt` vazio é uma prática recomendada se a imagem for meramente ilustrativa.
Preferencialmente, o atributo `alt` não deve conter caracteres especiais, a menos que isso seja necessário.
Vamos adicionar um atributo `alt` ao nosso exemplo `img` acima:
```html
<imgsrc="https://www.freecatphotoapp.com/your-image.jpg"alt="A business cat wearing a necktie.">
```
# --instructions--
Tente adicionar uma imagem ao seu site:
Dentro do elemento `main` existente, insira um elemento `img` antes dos elementos `p` existentes.
O atributo `alt` do elemento de imagem não deve estar vazio.
```js
assert(
$('img').attr('alt') &&
$('img').attr('alt').length &&
/<img\S*alt=(['"])(?!\1|>)\S+\1\S*\/?>/.test(
__helpers.removeWhiteSpace(code)
)
);
```
# --seed--
## --seed-contents--
```html
<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>
<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>