--- id: bad87fee1348bd9aedf08812 title: Add Images to Your Website challengeType: 0 videoUrl: https://scrimba.com/p/pVMPUv/c8EbJf2 forumTopicId: 16640 localeTitle: Добавьте изображения на свой сайт --- ## Description
Вы можете добавлять изображения на свой сайт с помощью элемента img и указывать URL-адрес определенного изображения, используя атрибут src . Примером этого может быть: <img src="https://www.your-image-source.com/your-image.jpg"> Обратите внимание, что элементы img самозакрываются. Все элементы img должны иметь атрибут alt . Текст внутри атрибута alt используется для чтения с экрана для улучшения доступности и отображается в виде текста, если изображение не загружается. Примечание. Если изображение является чисто декоративным, использование чистого атрибута alt является наилучшей практикой. В идеале атрибут alt не должен содержать специальных символов, если это не требуется. Давайте добавим атрибут alt к нашему примеру img выше: <img src="https://www.your-image-source.com/your-image.jpg" alt="Author standing on a beach with two thumbs up.">
## Instructions
Попробуем добавить изображение на наш сайт: вставьте тег img перед элементом h2 . Теперь установите атрибут src так, чтобы он указывал на этот url: https://bit.ly/fcc-relaxing-cat Наконец, не забудьте дать вашему изображению текст alt .
## Tests
```yml tests: - text: Your page should have an image element. testString: assert($("img").length); - text: Your image should have a src attribute that points to the kitten image. testString: assert(/^https:\/\/bit\.ly\/fcc-relaxing-cat$/i.test($("img").attr("src"))); - text: Your image element's alt attribute must not be empty. testString: assert($("img").attr("alt") && $("img").attr("alt").length && /)\S+\1\S*\/?>/.test(code.replace(/\s/g,''))); ```
## Challenge Seed
```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.

```
## Solution
```html

CatPhotoApp

A cute orange cat lying on its back.

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.

```