---
id: bad87fee1348bd9aedf08812
title: Add Images to Your Website
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/c8EbJf2'
forumTopicId: 16640
dashedName: add-images-to-your-website
---
# --description--
You can add images to your website by using the `img` element, and point to a specific image's URL using the `src` attribute.
An example of this would be:
`
`
Note that `img` elements are self-closing.
All `img` elements **must** have an `alt` attribute. The text inside an `alt` attribute is used for screen readers to improve accessibility and is displayed if the image fails to load.
**Note:** If the image is purely decorative, using an empty `alt` attribute is a best practice.
Ideally the `alt` attribute should not contain special characters unless needed.
Let's add an `alt` attribute to our `img` example above:
`
`
# --instructions--
Let's try to add an image to our website:
Within the existing `main` element, insert an `img` element before the existing `p` elements.
Now set the `src` attribute so that it points to this url:
`https://bit.ly/fcc-relaxing-cat`
Finally, don't forget to give your `img` element an `alt` attribute with applicable text.
# --hints--
Your page should have an image element.
```js
assert($('img').length);
```
Your image should have a `src` attribute that points to the kitten image.
```js
assert(/^https:\/\/bit\.ly\/fcc-relaxing-cat$/i.test($('img').attr('src')));
```
Your image element's `alt` attribute should not be empty.
```js
assert(
$('img').attr('alt') &&
$('img').attr('alt').length &&
/
)\S+\1\S*\/?>/.test(
__helpers.removeWhiteSpace(code)
)
);
```
# --seed--
## --seed-contents--
```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.
```
# --solutions--
```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.
```